]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
PR gas/12715
authorMatthew Gretton-Dann <matthew.gretton-dann@arm.com>
Thu, 12 May 2011 12:41:45 +0000 (12:41 +0000)
committerMatthew Gretton-Dann <matthew.gretton-dann@arm.com>
Thu, 12 May 2011 12:41:45 +0000 (12:41 +0000)
* gas/config/tc-arm.c (parse_big_immediate):  Fix parsing of 64-bit
immediates on 32-bit hosts.
* gas/testsuite/gas/arm/neon-const.s: Add testcase for 64-bit Neon constants.
* gas/testsuite/gas/arm/neon-const.d: Likewise.

gas/ChangeLog
gas/config/tc-arm.c
gas/testsuite/ChangeLog
gas/testsuite/gas/arm/neon-const.d
gas/testsuite/gas/arm/neon-const.s

index 56a017745d62c4a4aa833677ad0d8ec6182ba46f..61843faef9acf3a11a64a69ae2175b5a17231553 100644 (file)
@@ -1,3 +1,9 @@
+2011-05-12  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
+
+       PR gas/12715
+       * config/tc-arm.c (parse_big_immediate):  Fix parsing of 64-bit
+       immediates on 32-bit hosts.
+
 2011-05-10  Quentin Neill  <quentin.neill@amd.com>
 
        * config/tc-i386.c (cpu_arch): Add bdver2 and rename
index a0b31a0f1d10c939471ad655cc3fe3876c516c1f..64a71e810d747dbbfc5caf2508f3cab5c9b92a06 100644 (file)
@@ -4459,7 +4459,7 @@ parse_big_immediate (char **str, int i)
       /* If we're on a 64-bit host, then a 64-bit number can be returned using
         O_constant.  We have to be careful not to break compilation for
         32-bit X_add_number, though.  */
-      if ((exp.X_add_number & ~0xffffffffl) != 0)
+      if ((exp.X_add_number & ~(offsetT)(0xffffffffU)) != 0)
        {
           /* X >> 32 is illegal if sizeof (exp.X_add_number) == 4.  */
          inst.operands[i].reg = ((exp.X_add_number >> 16) >> 16) & 0xffffffff;
index f1ba9896d69c3f2c9cf7b79c889ed87482fcfa01..1b70d3de4c99d431d784246e90ee3b29ef3f460f 100644 (file)
@@ -1,3 +1,9 @@
+2011-05-12  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
+
+       PR gas/12715
+       * gas/arm/neon-const.s: Add testcase for 64-bit Neon constants.
+       * gas/arm/neon-const.d: Likewise.
+
 2011-05-11  Richard Sandiford  <rdsandiford@googlemail.com>
 
        * gas/mips/24k-branch-delay-1.d: Allow 64-bit addresses.  Stub out
index a1bc97cf381ffe9f25add4c06e13e51255abfa21..6c46930b7e0f303e6809077660a802de91e17108 100644 (file)
@@ -263,3 +263,4 @@ Disassembly of section .text:
 0[0-9a-f]+ <[^>]+> f3850f5f    vmov\.f32       q0, #-0\.484375 ; 0xbef80000
 0[0-9a-f]+ <[^>]+> f3860f5f    vmov\.f32       q0, #-0\.96875  ; 0xbf780000
 0[0-9a-f]+ <[^>]+> f3870f5f    vmov\.f32       q0, #-1\.9375   ; 0xbff80000
+0[0-9a-f]+ <[^>]+> f3879e3f    vmov\.i64       d9, #0xffffffffffffffff
index a6fb55075a934b9c3a830dbfa93825a5a7b3fd34..aaaf14412318be8bae38028b10cf95cc9c11e177 100644 (file)
         vmov.f32 q0, -0.484375
         vmov.f32 q0, -0.96875
         vmov.f32 q0, -1.9375
+
+       vmov.i64 d9, #0xffffffffffffffff