We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b5701 commit 05d0c17Copy full SHA for 05d0c17
1 file changed
llvm/lib/CodeGen/LLVMTargetMachine.cpp
@@ -37,10 +37,10 @@ static cl::opt<bool>
37
EnableTrapUnreachable("trap-unreachable", cl::Hidden,
38
cl::desc("Enable generating trap for unreachable"));
39
40
-static cl::opt<bool>
41
- EnableNoTrapAfterNoreturn("no-trap-after-noreturn", cl::Hidden,
42
- cl::desc("Do not emit a trap instruction for 'unreachable' IR instructions "
43
- "after noreturn calls, even if --trap-unreachable is set."));
+static cl::opt<bool> EnableNoTrapAfterNoreturn(
+ "no-trap-after-noreturn", cl::Hidden,
+ cl::desc("Do not emit a trap instruction for 'unreachable' IR instructions "
+ "after noreturn calls, even if --trap-unreachable is set."));
44
45
void LLVMTargetMachine::initAsmInfo() {
46
MRI.reset(TheTarget.createMCRegInfo(getTargetTriple().str()));
0 commit comments