diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /gcc/gcc-3.3.3/arm-14302.patch | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'gcc/gcc-3.3.3/arm-14302.patch')
-rw-r--r-- | gcc/gcc-3.3.3/arm-14302.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/gcc-3.3.3/arm-14302.patch b/gcc/gcc-3.3.3/arm-14302.patch index e69de29bb2..6ac74fcc05 100644 --- a/gcc/gcc-3.3.3/arm-14302.patch +++ b/gcc/gcc-3.3.3/arm-14302.patch @@ -0,0 +1,24 @@ +2004-02-26 Richard Earnshaw <rearnsha@arm.com> + Daniel Jacobowitz <drow@mvista.com> + + PR target/14302 + * arm.h (ARM_GO_IF_LEGITIMATE_ADDRESS): Don't check the mode + size for minipool references. + +Index: arm.h +=================================================================== +RCS file: /cvs/gcc/gcc/gcc/config/arm/arm.h,v +retrieving revision 1.168.2.1 +retrieving revision 1.168.2.2 +diff -u -r1.168.2.1 -r1.168.2.2 +--- gcc/config/arm/arm.h 25 Feb 2004 11:50:24 -0000 1.168.2.1 ++++ gcc/config/arm/arm.h 26 Feb 2004 14:10:01 -0000 1.168.2.2 +@@ -2029,7 +2029,7 @@ + && GET_CODE (XEXP (X, 0)) == REG \ + && ARM_REG_OK_FOR_BASE_P (XEXP (X, 0))) \ + goto LABEL; \ +- else if (GET_MODE_SIZE (MODE) >= 4 && reload_completed \ ++ else if (reload_completed \ + && (GET_CODE (X) == LABEL_REF \ + || (GET_CODE (X) == CONST \ + && GET_CODE (XEXP ((X), 0)) == PLUS \ |