[llvm] [CFIInstrInserter] A test showing the need to handle `cfi_escape`. (PR #128211)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 10:49:26 PST 2025
================
@@ -187,7 +192,10 @@ RISCVTargetMachine::RISCVTargetMachine(const Target &T, const Triple &TT,
if (TT.isOSFuchsia() && !TT.isArch64Bit())
report_fatal_error("Fuchsia is only supported for 64-bit");
- setCFIFixup(true);
+ if (EnableCFIInstrInserter)
----------------
topperc wrote:
`setCFIFixup(!EnableCFIInstrInserter)`?
https://github.com/llvm/llvm-project/pull/128211
More information about the llvm-commits
mailing list