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 39cf545 commit 81ca350Copy full SHA for 81ca350
llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
@@ -48,7 +48,7 @@ class SIAnnotateControlFlow {
48
49
ConstantInt *BoolTrue;
50
ConstantInt *BoolFalse;
51
- UndefValue *BoolUndef;
+ PoisonValue *BoolPoison;
52
Constant *IntMaskZero;
53
54
Function *If = nullptr;
@@ -120,7 +120,7 @@ void SIAnnotateControlFlow::initialize(const GCNSubtarget &ST) {
120
121
BoolTrue = ConstantInt::getTrue(Context);
122
BoolFalse = ConstantInt::getFalse(Context);
123
- BoolUndef = PoisonValue::get(Boolean);
+ BoolPoison = PoisonValue::get(Boolean);
124
IntMaskZero = ConstantInt::get(IntMask, 0);
125
}
126
0 commit comments