diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-05-14 00:46:35 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-05-14 00:46:35 +0000 |
commit | 06928192aeb61fef083142b574d73b34ff1e1cf4 (patch) | |
tree | 33a42087c593e4ebef1254c2f678a32a3bdf3a40 /llvm/lib/Target/ARM/ARMInstrInfo.cpp | |
parent | d4f63052c4f2524a41cc94b15fcbbdee4760b3d4 (diff) | |
download | bcm5719-llvm-06928192aeb61fef083142b574d73b34ff1e1cf4.tar.gz bcm5719-llvm-06928192aeb61fef083142b574d73b34ff1e1cf4.zip |
Update the names of the exception handling sjlj instrinsics to
llvm.eh.sjlj.* for better clarity as to their purpose and scope. Add
a description of llvm.eh.sjlj.setjmp to ExceptionHandling.html.
(llvm.eh.sjlj.longjmp documentation coming when that implementation is
added).
llvm-svn: 71758
Diffstat (limited to 'llvm/lib/Target/ARM/ARMInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.cpp b/llvm/lib/Target/ARM/ARMInstrInfo.cpp index 8e678a8c461..4b0dbb5dacd 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.cpp +++ b/llvm/lib/Target/ARM/ARMInstrInfo.cpp @@ -991,7 +991,7 @@ unsigned ARMInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const { // If this machine instr is a constant pool entry, its size is recorded as // operand #2. return MI->getOperand(2).getImm(); - case ARM::Int_builtin_setjmp: return 12; + case ARM::Int_eh_sjlj_setjmp: return 12; case ARM::BR_JTr: case ARM::BR_JTm: case ARM::BR_JTadd: |