Fix a problem building the ARM assembler using LLVM.
authorLoria <Loria@phantasia.org>
Mon, 1 Feb 2016 14:32:25 +0000 (14:32 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 1 Feb 2016 14:32:25 +0000 (14:32 +0000)
PR target/19311
* config/tc-arm.c (encode_arm_immediate): Recode to improve
efficiency and avoid an LLVM loop optimization bug.

gas/ChangeLog
gas/config/tc-arm.c

index 027b556..6e7319d 100644 (file)
@@ -1,3 +1,9 @@
+2016-02-01  Loria  <Loria@phantasia.org>
+
+       PR target/19311
+       * config/tc-arm.c (encode_arm_immediate): Recode to improve
+       efficiency and avoid an LLVM loop optimization bug.
+
 2016-02-01  Nick Clifton  <nickc@redhat.com>
 
        * config/tc-microblaze.c (parse_imm): Fix compile time warning
index 4a16267..055e525 100644 (file)
@@ -7268,7 +7268,10 @@ encode_arm_immediate (unsigned int val)
 {
   unsigned int a, i;
 
-  for (i = 0; i < 32; i += 2)
+  if (val <= 0xff)
+    return val;
+
+  for (i = 2; i < 32; i += 2)
     if ((a = rotate_left (val, i)) <= 0xff)
       return a | (i << 7); /* 12-bit pack: [shift-cnt,const].  */