summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-05-26 20:22:18 +0000
committerJim Grosbach <grosbach@apple.com>2010-05-26 20:22:18 +0000
commit23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca (patch)
tree71edc7627c7f1e0debfad9797b2cd7f04109c2ed /include/llvm/CodeGen
parent394427b014a7126e56f3ee411993f08677d93c83 (diff)
downloadllvm-23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca.tar.gz
llvm-23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca.tar.bz2
llvm-23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca.tar.xz
Adjust eh.sjlj.setjmp to properly have a chain and to have an opcode entry in
ISD::. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/ISDOpcodes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/ISDOpcodes.h b/include/llvm/CodeGen/ISDOpcodes.h
index 83c5568d3b..a5e9dd5fe8 100644
--- a/include/llvm/CodeGen/ISDOpcodes.h
+++ b/include/llvm/CodeGen/ISDOpcodes.h
@@ -95,6 +95,11 @@ namespace ISD {
// execution to HANDLER. Many platform-related details also :)
EH_RETURN,
+ // OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer)
+ // This corresponds to the eh.sjlj.setjmp intrinsic.
+ // It takes an input chain and a pointer to the jump buffer as inputs
+ // and returns an outchain.
+ EH_SJLJ_SETJMP,
// OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer)
// This corresponds to the eh.sjlj.longjmp intrinsic.