re PR testsuite/90331 (New test case gcc.dg/pr87314-1.c fails)
authorRichard Biener <rguenther@suse.de>
Mon, 6 May 2019 07:38:26 +0000 (07:38 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 6 May 2019 07:38:26 +0000 (07:38 +0000)
2019-05-06  Richard Biener  <rguenther@suse.de>

PR testsuite/90331
* gcc.dg/pr87314-1.c: Align the substring to open up
string merging for targets aligning strings to 8 bytes.

From-SVN: r270900

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr87314-1.c

index 3e4bf2b56ee65a39a1254448995856f69982dcfb..1dec62f5d9718022e153fa91066f294721703ce6 100644 (file)
@@ -1,3 +1,9 @@
+2019-05-06  Richard Biener  <rguenther@suse.de>
+
+       PR testsuite/90331
+       * gcc.dg/pr87314-1.c: Align the substring to open up
+       string merging for targets aligning strings to 8 bytes.
+
 2019-05-06  Martin Liska  <mliska@suse.cz>
 
        PR sanitizer/90312
index 4dc85c8eee619f88a12df30a9e856e1077f0a3c4..9bc905612b5b3995597c2cddfd319aed049e9505 100644 (file)
@@ -3,9 +3,9 @@
 
 int f(){ int a; return &a==(void *)"hello"; }
 int g(){ return "bye"=="hello"; }
-int h() { return "bye"=="hellobye"+5; }
+int h() { return "bye"=="helloooobye"+8; }
 
 /* { dg-final { scan-tree-dump-times "hello" 1 "original" } } */
 /* The test in h() should be retained because the result depends on
    string merging.  */
-/* { dg-final { scan-assembler "hello" } } */
+/* { dg-final { scan-assembler "hellooo" } } */