We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b069ec commit 5b1ce3aCopy full SHA for 5b1ce3a
llvm/lib/Target/SPIRV/SPIRVPreLegalizer.cpp
@@ -611,12 +611,12 @@ static bool isImplicitFallthrough(MachineBasicBlock &MBB) {
611
if (MBB.empty())
612
return true;
613
614
- // Branching spirv intrinsics are not detected by this generic method.
+ // Branching SPIR-V intrinsics are not detected by this generic method.
615
// Thus, we can only trust negative result.
616
if (!MBB.canFallThrough())
617
return false;
618
619
- // Otherwise, we must manually check if we have a spirv intrinsic which
+ // Otherwise, we must manually check if we have a SPIR-V intrinsic which
620
// prevent an implicit fallthrough.
621
for (MachineBasicBlock::reverse_iterator It = MBB.rbegin(), E = MBB.rend();
622
It != E; ++It) {
0 commit comments