diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2015-02-25 22:18:19 +0000 |
---|---|---|
committer | Peter Bergner <bergner@gcc.gnu.org> | 2015-02-25 16:18:19 -0600 |
commit | 313123e753cee2db262aa979a10898fc64879b34 (patch) | |
tree | 06d4876eb496cc207de6a5e085b47bc95a39e70d | |
parent | 2b8f9c8f36033b7ed3a2b89d61db7f1a3fdb0a42 (diff) | |
download | gcc-313123e753cee2db262aa979a10898fc64879b34.zip gcc-313123e753cee2db262aa979a10898fc64879b34.tar.gz gcc-313123e753cee2db262aa979a10898fc64879b34.tar.bz2 |
htm.md (tcheck): Fix assembly encoding.
gcc/
* config/rs6000/htm.md (tcheck): Fix assembly encoding.
gcc/testsuite/
* gcc.target/powerpc/htm-builtin-1.c: Fix tcheck expect value.
From-SVN: r220992
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/htm.md | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/powerpc/htm-builtin-1.c | 2 |
4 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2015-02-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com> + + * config/rs6000/htm.md (tcheck): Fix assembly encoding. + 2015-02-25 Uros Bizjak <ubizjak@gmail.com> Revert: diff --git a/gcc/config/rs6000/htm.md b/gcc/config/rs6000/htm.md index 2c4689f..79fb740 100644 --- a/gcc/config/rs6000/htm.md +++ b/gcc/config/rs6000/htm.md @@ -252,7 +252,7 @@ (unspec_volatile:CC [(match_operand 0 "u3bit_cint_operand" "n")] UNSPECV_HTM_TCHECK))] "TARGET_HTM" - "tcheck. %0" + "tcheck %0" [(set_attr "type" "htm") (set_attr "length" "4")]) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 28db896..29fa2f0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-02-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com> + + * gcc.target/powerpc/htm-builtin-1.c: Fix tcheck expect value. + 2015-02-25 Pat Haugen <pthaugen@us.ibm.com> * gcc.target/powerpc/direct-move.h: Include string.h/stdlib.h. diff --git a/gcc/testsuite/gcc.target/powerpc/htm-builtin-1.c b/gcc/testsuite/gcc.target/powerpc/htm-builtin-1.c index e58816a..62d64e6 100644 --- a/gcc/testsuite/gcc.target/powerpc/htm-builtin-1.c +++ b/gcc/testsuite/gcc.target/powerpc/htm-builtin-1.c @@ -10,7 +10,7 @@ /* { dg-final { scan-assembler-times "tabortdci\\." 1 } } */ /* { dg-final { scan-assembler-times "tabortwc\\." 1 } } */ /* { dg-final { scan-assembler-times "tabortwci\\." 2 } } */ -/* { dg-final { scan-assembler-times "tcheck\\." 1 } } */ +/* { dg-final { scan-assembler-times "tcheck" 1 } } */ /* { dg-final { scan-assembler-times "trechkpt\\." 1 } } */ /* { dg-final { scan-assembler-times "treclaim\\." 1 } } */ /* { dg-final { scan-assembler-times "tsr\\." 3 } } */ |