diff options
author | Florian Mayer <fmayer@google.com> | 2025-07-14 18:55:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-14 18:55:09 -0700 |
commit | 14dc3e3d5f84fe4e52bcccdc514efdd27ed7a45c (patch) | |
tree | 12f434156fd4c9622bd7730be734bb49ab7661a4 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | 27b3b4a665f144b968a04502e5461ab8d1cd1471 (diff) | |
download | llvm-14dc3e3d5f84fe4e52bcccdc514efdd27ed7a45c.zip llvm-14dc3e3d5f84fe4e52bcccdc514efdd27ed7a45c.tar.gz llvm-14dc3e3d5f84fe4e52bcccdc514efdd27ed7a45c.tar.bz2 |
[SelectionDAG] [KCFI] Allow "kcfi" on invoke (#148742)
This is handled in CallBase, so it is valid for both call and invoke
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index ecd1ff8..517743a 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -3355,7 +3355,7 @@ void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) { {LLVMContext::OB_deopt, LLVMContext::OB_gc_transition, LLVMContext::OB_gc_live, LLVMContext::OB_funclet, LLVMContext::OB_cfguardtarget, LLVMContext::OB_ptrauth, - LLVMContext::OB_clang_arc_attachedcall})) + LLVMContext::OB_clang_arc_attachedcall, LLVMContext::OB_kcfi})) reportFatalUsageError( "cannot lower invokes with arbitrary operand bundles!"); |