[llvm-commits] [llvm] r103969 - /llvm/trunk/lib/Target/ARM/ARMInstrThumb.td

Bob Wilson bob.wilson at apple.com
Mon May 17 13:31:13 PDT 2010


Author: bwilson
Date: Mon May 17 15:31:13 2010
New Revision: 103969

URL: http://llvm.org/viewvc/llvm-project?rev=103969&view=rev
Log:
Fix a regression in 464.h264 for thumb1 and thumb2 nightly tests.
Obvious in retrospect but not fun to debug.

Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrThumb.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrThumb.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrThumb.td?rev=103969&r1=103968&r2=103969&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrThumb.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrThumb.td Mon May 17 15:31:13 2010
@@ -423,7 +423,7 @@
 // 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;
 }





More information about the llvm-commits mailing list