diff options
| author | Jim Grosbach <grosbach@apple.com> | 2009-08-11 17:08:15 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2009-08-11 17:08:15 +0000 |
| commit | 1d5350c08f98e8b541a1818be55f8b335689acd6 (patch) | |
| tree | 8b185f92be65926ce6655ee64c705a071677d512 /llvm/lib | |
| parent | 58f4d89a10ee340577a3a84a5d10cd17cf820c13 (diff) | |
| download | bcm5719-llvm-1d5350c08f98e8b541a1818be55f8b335689acd6.tar.gz bcm5719-llvm-1d5350c08f98e8b541a1818be55f8b335689acd6.zip | |
fix GetInstSizeInBytes for eh_sjlj_setjmp
llvm-svn: 78683
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp index ff109edffe4..f4aded9397d 100644 --- a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp +++ b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp @@ -440,7 +440,7 @@ unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const { // operand #2. return MI->getOperand(2).getImm(); case ARM::Int_eh_sjlj_setjmp: - return 12; + return 24; case ARM::BR_JTr: case ARM::BR_JTm: case ARM::BR_JTadd: |

