diff --git a/aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff b/aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff new file mode 100644 index 0000000..4f02413 --- /dev/null +++ b/aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff @@ -0,0 +1,115 @@ +From: Yufeng Zhang +Date: Mon, 13 May 2013 22:50:00 +0000 (+0000) +Subject: gas/ +X-Git-Url: http://sourceware.org/git/?p=binutils.git;a=commitdiff_plain;h=1796bf893c4729d5c523502318d72cae78495d6c + +gas/ + + Backport from mainline: + + 2013-02-27 Yufeng Zhang + * config/tc-aarch64.c (parse_sys_reg): Allow the full range of CRn + for system registers. + +gas/testsuite/ + + Backport from mainline: + + 2013-02-27 Yufeng Zhang + * gas/aarch64/illegal.l: Delete the error message for + msr S3_1_C13_C15_1,x7. + * gas/aarch64/sysreg.s: Add new tests. + * gas/aarch64/sysreg.d: Update. +--- + +diff --git a/gas/ChangeLog b/gas/ChangeLog +index 821acc9..3d09792 100644 +--- a/gas/ChangeLog ++++ b/gas/ChangeLog +@@ -1,3 +1,11 @@ ++2013-05-13 Yufeng Zhang ++ ++ Backport from mainline: ++ ++ 2013-02-27 Yufeng Zhang ++ * config/tc-aarch64.c (parse_sys_reg): Allow the full range of CRn ++ for system registers. ++ + 2013-03-05 Yufeng Zhang + + * config/tc-aarch64.c (aarch64_imm_float_p): Rename 'e' to 'pattern'; +diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c +index 162c865..db28c71 100644 +--- a/gas/config/tc-aarch64.c ++++ b/gas/config/tc-aarch64.c +@@ -3243,10 +3243,14 @@ parse_sys_reg (char **str, struct hash_control *sys_regs, int imple_defined_p) + unsigned int op0, op1, cn, cm, op2; + if (sscanf (buf, "s%u_%u_c%u_c%u_%u", &op0, &op1, &cn, &cm, &op2) != 5) + return PARSE_FAIL; +- /* Register access is encoded as follows: ++ /* The architecture specifies the encoding space for implementation ++ defined registers as: + op0 op1 CRn CRm op2 +- 11 xxx 1x11 xxxx xxx. */ +- if (op0 != 3 || op1 > 7 || (cn | 0x4) != 0xf || cm > 15 || op2 > 7) ++ 11 xxx 1x11 xxxx xxx ++ For convenience GAS accepts a wider encoding space, as follows: ++ op0 op1 CRn CRm op2 ++ 11 xxx xxxx xxxx xxx */ ++ if (op0 != 3 || op1 > 7 || cn > 15 || cm > 15 || op2 > 7) + return PARSE_FAIL; + value = (op0 << 14) | (op1 << 11) | (cn << 7) | (cm << 3) | op2; + } +diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog +index d1ebc3b..8ee06c8 100644 +--- a/gas/testsuite/ChangeLog ++++ b/gas/testsuite/ChangeLog +@@ -1,3 +1,13 @@ ++2013-05-13 Yufeng Zhang ++ ++ Backport from mainline: ++ ++ 2013-02-27 Yufeng Zhang ++ * gas/aarch64/illegal.l: Delete the error message for ++ msr S3_1_C13_C15_1,x7. ++ * gas/aarch64/sysreg.s: Add new tests. ++ * gas/aarch64/sysreg.d: Update. ++ + 2013-03-08 Christian Groessler + + Backport from mainline: +diff --git a/gas/testsuite/gas/aarch64/illegal.l b/gas/testsuite/gas/aarch64/illegal.l +index e17a1de..f7e4074 100644 +--- a/gas/testsuite/gas/aarch64/illegal.l ++++ b/gas/testsuite/gas/aarch64/illegal.l +@@ -520,7 +520,6 @@ + [^:]*:496: Error: .*`str x1,page_table_count' + [^:]*:498: Error: .*`prfm PLDL3KEEP,\[x9,x15,sxtx#2\]' + [^:]*:500: Error: .*`mrs x5,S1_0_C13_C8_0' +-[^:]*:501: Error: .*`msr S3_1_C13_C15_1,x7' + [^:]*:502: Error: .*`msr S3_1_C11_C15_-1,x7' + [^:]*:503: Error: .*`msr S3_1_11_15_1,x7' + [^:]*:506: Error: .*`movi w1,#15' +diff --git a/gas/testsuite/gas/aarch64/sysreg.d b/gas/testsuite/gas/aarch64/sysreg.d +index b83b270..c7cf00e 100644 +--- a/gas/testsuite/gas/aarch64/sysreg.d ++++ b/gas/testsuite/gas/aarch64/sysreg.d +@@ -23,3 +23,6 @@ Disassembly of section \.text: + 3c: d5380260 mrs x0, id_isar3_el1 + 40: d5380280 mrs x0, id_isar4_el1 + 44: d53802a0 mrs x0, id_isar5_el1 ++ 48: d538cc00 mrs x0, s3_0_c12_c12_0 ++ 4c: d5384600 mrs x0, s3_0_c4_c6_0 ++ 50: d5184600 msr s3_0_c4_c6_0, x0 +diff --git a/gas/testsuite/gas/aarch64/sysreg.s b/gas/testsuite/gas/aarch64/sysreg.s +index e6f770e..3287594 100644 +--- a/gas/testsuite/gas/aarch64/sysreg.s ++++ b/gas/testsuite/gas/aarch64/sysreg.s +@@ -22,3 +22,7 @@ + mrs x0, id_isar3_el1 + mrs x0, id_isar4_el1 + mrs x0, id_isar5_el1 ++ ++ mrs x0, s3_0_c12_c12_0 ++ mrs x0, s3_0_c4_c6_0 ++ msr s3_0_c4_c6_0, x0 diff --git a/aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff b/aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff new file mode 100644 index 0000000..4fd9142 --- /dev/null +++ b/aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff @@ -0,0 +1,142 @@ +From: Yufeng Zhang +Date: Mon, 13 May 2013 23:09:51 +0000 (+0000) +Subject: gas/testsuite/ +X-Git-Url: http://sourceware.org/git/?p=binutils.git;a=commitdiff_plain;h=f426901e1be0f58fe4e9386cada50ca57d0a4f3 + +gas/testsuite/ + + Backport from mainline: + + 2013-05-13 Yufeng Zhang + * gas/aarch64/diagnostic.s: Update. + * gas/aarch64/diagnostic.l: Ditto. + * gas/aarch64/movi.s: Add new tests. + * gas/aarch64/movi.d: Update. + +opcodes/ + + Backport from mainline: + + 2013-05-13 Yufeng Zhang + * aarch64-asm.c (aarch64_ins_advsimd_imm_modified): Remove assertion. + * aarch64-opc.c (operand_general_constraint_met_p): Relax the range + check from [0, 255] to [-128, 255]. +--- + +diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog +index 8ee06c8..475c93a 100644 +--- a/gas/testsuite/ChangeLog ++++ b/gas/testsuite/ChangeLog +@@ -1,3 +1,13 @@ ++2013-05-13 Yufeng Zhang ++ ++ Backport from mainline: ++ ++ 2013-05-13 Yufeng Zhang ++ * gas/aarch64/diagnostic.s: Update. ++ * gas/aarch64/diagnostic.l: Ditto. ++ * gas/aarch64/movi.s: Add new tests. ++ * gas/aarch64/movi.d: Update. ++ + 2013-05-13 Yufeng Zhang + + Backport from mainline: +diff --git a/gas/testsuite/gas/aarch64/diagnostic.l b/gas/testsuite/gas/aarch64/diagnostic.l +index f37f11c..d7a1347 100644 +--- a/gas/testsuite/gas/aarch64/diagnostic.l ++++ b/gas/testsuite/gas/aarch64/diagnostic.l +@@ -38,8 +38,8 @@ + [^:]*:40: Error: invalid shift amount at operand 3 -- `shll v1.4s,v2.4h,#32' + [^:]*:41: Error: immediate value out of range 0 to 31 at operand 3 -- `shl v1.2s,v2.2s,32' + [^:]*:42: Error: immediate value out of range 1 to 8 at operand 3 -- `sqshrn2 v2.16b,v3.8h,#17' +-[^:]*:43: Error: immediate value out of range 0 to 255 at operand 2 -- `movi v1.4h,256' +-[^:]*:44: Error: immediate value out of range 0 to 255 at operand 2 -- `movi v1.4h,-1' ++[^:]*:43: Error: immediate value out of range -128 to 255 at operand 2 -- `movi v1.4h,256' ++[^:]*:44: Error: immediate value out of range -128 to 255 at operand 2 -- `movi v1.4h,-129' + [^:]*:45: Error: invalid shift operator at operand 2 -- `movi v1.4h,255,msl#8' + [^:]*:46: Error: invalid value for immediate at operand 2 -- `movi d0,256' + [^:]*:47: Error: immediate value should be a multiple of 8 at operand 2 -- `movi v1.4h,255,lsl#7' +diff --git a/gas/testsuite/gas/aarch64/diagnostic.s b/gas/testsuite/gas/aarch64/diagnostic.s +index 99ebf8f..e5443ab 100644 +--- a/gas/testsuite/gas/aarch64/diagnostic.s ++++ b/gas/testsuite/gas/aarch64/diagnostic.s +@@ -41,7 +41,7 @@ + shl v1.2s, v2.2s, 32 + sqshrn2 v2.16b, v3.8h, #17 + movi v1.4h, 256 +- movi v1.4h, -1 ++ movi v1.4h, -129 + movi v1.4h, 255, msl #8 + movi d0, 256 + movi v1.4h, 255, lsl #7 +diff --git a/gas/testsuite/gas/aarch64/movi.d b/gas/testsuite/gas/aarch64/movi.d +index 2c73cc4..c225b21 100644 +--- a/gas/testsuite/gas/aarch64/movi.d ++++ b/gas/testsuite/gas/aarch64/movi.d +@@ -8201,3 +8201,6 @@ Disassembly of section \.text: + 8004: 6f07e7e0 movi v0.2d, #0xffffffffffffffff + 8008: 6f07e7e0 movi v0.2d, #0xffffffffffffffff + 800c: 2f07e7ff movi d31, #0xffffffffffffffff ++ 8010: 0f04e403 movi v3.8b, #0x80 ++ 8014: 0f04e423 movi v3.8b, #0x81 ++ 8018: 0f07e7e3 movi v3.8b, #0xff +diff --git a/gas/testsuite/gas/aarch64/movi.s b/gas/testsuite/gas/aarch64/movi.s +index 99ca34a..76f2d47 100644 +--- a/gas/testsuite/gas/aarch64/movi.s ++++ b/gas/testsuite/gas/aarch64/movi.s +@@ -102,3 +102,8 @@ + movi v0.2d, bignum + movi d31, 18446744073709551615 + .set bignum, 0xffffffffffffffff ++ ++ // Allow -128 to 255 in # ++ movi v3.8b, -128 ++ movi v3.8b, -127 ++ movi v3.8b, -1 +diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog +index 96dfaeb..4adbc86 100644 +--- a/opcodes/ChangeLog ++++ b/opcodes/ChangeLog +@@ -1,3 +1,12 @@ ++2013-05-13 Yufeng Zhang ++ ++ Backport from mainline: ++ ++ 2013-05-13 Yufeng Zhang ++ * aarch64-asm.c (aarch64_ins_advsimd_imm_modified): Remove assertion. ++ * aarch64-opc.c (operand_general_constraint_met_p): Relax the range ++ check from [0, 255] to [-128, 255]. ++ + 2013-03-25 Tristan Gingold + Backport of: 2013-03-08 Yann Sionneau + +diff --git a/opcodes/aarch64-asm.c b/opcodes/aarch64-asm.c +index 16cdaa9..ba463d9 100644 +--- a/opcodes/aarch64-asm.c ++++ b/opcodes/aarch64-asm.c +@@ -369,7 +369,6 @@ aarch64_ins_advsimd_imm_modified (const aarch64_operand *self ATTRIBUTE_UNUSED, + imm = aarch64_shrink_expanded_imm8 (imm); + assert ((int)imm >= 0); + } +- assert (imm <= 255); + insert_fields (code, imm, 0, 2, FLD_defgh, FLD_abc); + + if (kind == AARCH64_MOD_NONE) +diff --git a/opcodes/aarch64-opc.c b/opcodes/aarch64-opc.c +index 73a760a..32f34c6 100644 +--- a/opcodes/aarch64-opc.c ++++ b/opcodes/aarch64-opc.c +@@ -1724,10 +1724,10 @@ operand_general_constraint_met_p (const aarch64_opnd_info *opnds, int idx, + assert (idx == 1); + if (aarch64_get_qualifier_esize (opnds[0].qualifier) != 8) + { +- /* uimm8 */ +- if (!value_in_range_p (opnd->imm.value, 0, 255)) ++ /* uimm8 or simm8 */ ++ if (!value_in_range_p (opnd->imm.value, -128, 255)) + { +- set_imm_out_of_range_error (mismatch_detail, idx, 0, 255); ++ set_imm_out_of_range_error (mismatch_detail, idx, -128, 255); + return 0; + } + } diff --git a/binutils.changes b/binutils.changes index 18465db..a79cacf 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/binutils.spec b/binutils.spec index 3647d85..6c1be54 100644 --- a/binutils.spec +++ b/binutils.spec @@ -102,6 +102,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -171,6 +173,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 18465db..a79cacf 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 72bd09b..a9f4340 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 18465db..a79cacf 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index ce6a70b..5954841 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 18465db..a79cacf 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 46e21a9..fd3467b 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 18465db..a79cacf 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index e0beb2d..7d78a4b 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 18465db..a79cacf 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 298ba13..1680013 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 18465db..a79cacf 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index f782efc..fe45b3b 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 18465db..a79cacf 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 138b866..0dada33 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 18465db..a79cacf 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index e8e9cbb..2a18653 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 18465db..a79cacf 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 1ad5533..7171caa 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 18465db..a79cacf 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 992ceda..04e7b22 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 18465db..a79cacf 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 6b335f2..b9b0ac7 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 18465db..a79cacf 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 77b590f..0b7d23b 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 18465db..a79cacf 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 6785c86..aef3df5 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 18465db..a79cacf 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index e6fe1b3..88a7523 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 18465db..a79cacf 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 3a202a0..d8e3c6e 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 18465db..a79cacf 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + ------------------------------------------------------------------- Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 07f07c3..735e07e 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -105,6 +105,8 @@ Patch101: aarch64-biarch.patch Patch102: aarch64-gc-section-support.patch Patch103: aarch64-execstack.patch Patch201: s390-machinemode.patch +Patch202: aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +Patch203: aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: update-alternatives @@ -174,6 +176,8 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch102 -p1 %patch103 -p1 %patch201 -p1 +%patch202 -p1 +%patch203 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90