mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 11:39:26 +08:00
Only generate VMOV.I64 instructions for loading constant floating point values if this instruction is supported by the currently selected fpu.
PR target/2006764 * config/tc-arm.c (move_or_literal_pool): Only generate a VMOV.I64 instruction if supported by the currently selected fpu variant. * testsuite/gas/arm/vfpv3-ldr_immediate.s: Add test of this PR. * testsuite/gas/arm/vfpv3-ldr_immediate.d: Update expected disassembly.
This commit is contained in:

committed by
Nick Clifton

parent
2bbad2ea11
commit
934c263269
@ -1,5 +1,13 @@
|
||||
2016-05-25 Chua Zheng Leong <chuazl@comp.nus.edu.sg>
|
||||
|
||||
PR target/2006764
|
||||
* config/tc-arm.c (move_or_literal_pool): Only generate a VMOV.I64
|
||||
instruction if supported by the currently selected fpu variant.
|
||||
* testsuite/gas/arm/vfpv3-ldr_immediate.s: Add test of this PR.
|
||||
* testsuite/gas/arm/vfpv3-ldr_immediate.d: Update expected disassembly.
|
||||
|
||||
2016-05-24 Maciej W. Rozycki <macro@imgtec.com>
|
||||
|
||||
|
||||
* config/tc-mips.c (mips_fix_adjustable): Also return 0 for
|
||||
jump relocations against MIPS16 or microMIPS symbols on RELA
|
||||
targets.
|
||||
|
@ -8000,7 +8000,7 @@ move_or_literal_pool (int i, enum lit_type t, bfd_boolean mode_3)
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
else if (t == CONST_VEC)
|
||||
else if (t == CONST_VEC && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
|
||||
{
|
||||
int op = 0;
|
||||
unsigned immbits = 0;
|
||||
|
@ -32,4 +32,5 @@ Disassembly of section \.text:
|
||||
0[0-9a-fx]+ .*(00000000|40400000) .*
|
||||
0[0-9a-fx]+ .*(40400000|00000000) .*
|
||||
0[0-9a-fx]+ .*42000000 .*
|
||||
0[0-9a-fx]+ .*ed1fbb01 vldr d11, \[pc, #-4\].*
|
||||
#pass
|
||||
|
@ -42,5 +42,7 @@
|
||||
vldr s0,=0x42000000
|
||||
.pool
|
||||
|
||||
nop
|
||||
# PR 20067
|
||||
FLDD D11, =0
|
||||
.pool
|
||||
|
||||
|
Reference in New Issue
Block a user