diff options
Diffstat (limited to 'llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp')
-rw-r--r-- | llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp b/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp index 5f182c5304c..68cec8ca63f 100644 --- a/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp +++ b/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp @@ -37,7 +37,6 @@ typedef SmallVector<StackEntry, 16> StackVector; // Intrinsic names the control flow is annotated with static const char *const IfIntrinsic = "llvm.amdgcn.if"; static const char *const ElseIntrinsic = "llvm.amdgcn.else"; -static const char *const BreakIntrinsic = "llvm.amdgcn.break"; static const char *const IfBreakIntrinsic = "llvm.amdgcn.if.break"; static const char *const ElseBreakIntrinsic = "llvm.amdgcn.else.break"; static const char *const LoopIntrinsic = "llvm.amdgcn.loop"; @@ -146,9 +145,6 @@ bool SIAnnotateControlFlow::doInitialization(Module &M) { Else = M.getOrInsertFunction( ElseIntrinsic, ReturnStruct, Int64, (Type *)nullptr); - Break = M.getOrInsertFunction( - BreakIntrinsic, Int64, Int64, (Type *)nullptr); - IfBreak = M.getOrInsertFunction( IfBreakIntrinsic, Int64, Boolean, Int64, (Type *)nullptr); |