mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
Fix a problem building the ARM assembler using LLVM.
PR target/19311 * config/tc-arm.c (encode_arm_immediate): Recode to improve efficiency and avoid an LLVM loop optimization bug.
This commit is contained in:
parent
655ed9ea17
commit
4f1d62057f
@ -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
|
||||
|
@ -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]. */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user