diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-05-17 20:31:13 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-05-17 20:31:13 +0000 |
commit | 7f43fd84db4dcb5b948b92ab4a92327c22093556 (patch) | |
tree | 30e097665abf1cd18c589bb86dc3f16f058eada9 /lib | |
parent | b18d2dd115d8ff3fd75bbaa90849473266236dc3 (diff) | |
download | external_llvm-7f43fd84db4dcb5b948b92ab4a92327c22093556.tar.gz external_llvm-7f43fd84db4dcb5b948b92ab4a92327c22093556.tar.bz2 external_llvm-7f43fd84db4dcb5b948b92ab4a92327c22093556.zip |
Fix a regression in 464.h264 for thumb1 and thumb2 nightly tests.
Obvious in retrospect but not fun to debug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb.td b/lib/Target/ARM/ARMInstrThumb.td index 534a7447a1..aa0db2f27b 100644 --- a/lib/Target/ARM/ARMInstrThumb.td +++ b/lib/Target/ARM/ARMInstrThumb.td @@ -423,7 +423,7 @@ def tSVC : T1pI<(outs), (ins i32imm:$svc), IIC_Br, "svc", "\t$svc", []>, // binutils let isBarrier = 1, isTerminator = 1 in def tTRAP : TI<(outs), (ins), IIC_Br, - ".word 0xdefe ${:comment} trap", [(trap)]>, Encoding16 { + ".short 0xdefe ${:comment} trap", [(trap)]>, Encoding16 { let Inst{15-12} = 0b1101; let Inst{11-8} = 0b1110; } |