diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-12-01 18:10:36 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-12-01 18:10:36 +0000 |
commit | 36d4dec28ae66f8663ef39a5a474c3ed5c766dac (patch) | |
tree | d97fe6d6cf6387c84ed15c21b3bf6e6719758a0d /llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp | |
parent | d3a241a9c66e630814cb098c2d08e2d372c9faf3 (diff) | |
download | bcm5719-llvm-36d4dec28ae66f8663ef39a5a474c3ed5c766dac.tar.gz bcm5719-llvm-36d4dec28ae66f8663ef39a5a474c3ed5c766dac.zip |
Thumb1 exception handling setjmp
llvm-svn: 90246
Diffstat (limited to 'llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp index c95d4c8f3f4..6e476a6e62b 100644 --- a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp +++ b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp @@ -467,6 +467,8 @@ unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const { return MI->getOperand(2).getImm(); case ARM::Int_eh_sjlj_setjmp: return 24; + case ARM::tInt_eh_sjlj_setjmp: + return 22; case ARM::t2Int_eh_sjlj_setjmp: return 22; case ARM::BR_JTr: |