diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2009-09-04 18:59:50 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2009-09-04 18:59:50 +0000 |
commit | 510bc854f593e1cde35bd3423adbbf82c3e471bb (patch) | |
tree | 36e24640247304ba500e937ffab280203cade237 /gcc | |
parent | c45ae2c8dbeff831d5903e5c5021a4e4dffa2fa9 (diff) | |
download | gcc-510bc854f593e1cde35bd3423adbbf82c3e471bb.zip gcc-510bc854f593e1cde35bd3423adbbf82c3e471bb.tar.gz gcc-510bc854f593e1cde35bd3423adbbf82c3e471bb.tar.bz2 |
re PR target/41252 (Var tracking by default breaks arm-none-eabi build of newlib)
PR target/41252
* config/arm/vfp.md (*cmpdf_split_vfp): Fix src mode in the second
pattern of the split.
From-SVN: r151437
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/arm/vfp.md | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e88346b..b871f58 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2009-09-04 Alexandre Oliva <aoliva@redhat.com> + PR target/41252 + * config/arm/vfp.md (*cmpdf_split_vfp): Fix src mode in the second + pattern of the split. + +2009-09-04 Alexandre Oliva <aoliva@redhat.com> + * toplev.c (process_options): Move setter of flag_var_tracking before other tests that depend on it. Move down setter of flag_rename_registers. Don't enable var-tracking-assignments diff --git a/gcc/config/arm/vfp.md b/gcc/config/arm/vfp.md index 298a140..77c99d2 100644 --- a/gcc/config/arm/vfp.md +++ b/gcc/config/arm/vfp.md @@ -960,7 +960,7 @@ (compare:CCFP (match_dup 0) (match_dup 1))) (set (reg:CCFP CC_REGNUM) - (reg:CCFPE VFPCC_REGNUM))] + (reg:CCFP VFPCC_REGNUM))] "" ) |