diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2012-10-27 00:02:41 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2012-10-27 00:02:41 +0200 |
commit | 1f8c354b9857de87d28f96424d90b09a2503adcf (patch) | |
tree | 6c1119afad03188f4d2496f2ec2dfe076fb19347 | |
parent | c7a918f192a9ab425d2531e15e36bf80fac17ef8 (diff) | |
download | gcc-1f8c354b9857de87d28f96424d90b09a2503adcf.zip gcc-1f8c354b9857de87d28f96424d90b09a2503adcf.tar.gz gcc-1f8c354b9857de87d28f96424d90b09a2503adcf.tar.bz2 |
sync.md (ATOMIC): Correct DI condition.
gcc/
* config/rs6000/sync.md (ATOMIC): Correct DI condition.
From-SVN: r192863
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/sync.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7a04872..1668c54 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-10-26 Segher Boessenkool <segher@kernel.crashing.org> + + * config/rs6000/sync.md (ATOMIC): Correct DI condition. + 2012-10-26 Jakub Jelinek <jakub@redhat.com> PR debug/54970 diff --git a/gcc/config/rs6000/sync.md b/gcc/config/rs6000/sync.md index 42ac903..ddf2ae7 100644 --- a/gcc/config/rs6000/sync.md +++ b/gcc/config/rs6000/sync.md @@ -174,7 +174,7 @@ ;; opcode that is "phased-in". Not implemented as of Power7, so not yet used, ;; but let's prepare the macros anyway. -(define_mode_iterator ATOMIC [SI (DI "TARGET_64BIT")]) +(define_mode_iterator ATOMIC [SI (DI "TARGET_POWERPC64")]) (define_insn "load_locked<mode>" [(set (match_operand:ATOMIC 0 "gpc_reg_operand" "=r") |