Fix val-prof-7.c on --target_board 'unix/-m32'
authorMartin Liska <mliska@suse.cz>
Tue, 16 Aug 2016 12:28:46 +0000 (14:28 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Tue, 16 Aug 2016 12:28:46 +0000 (12:28 +0000)
* gcc.dg/tree-prof/val-prof-7.c (int main): Change size
of memory operations so that it can be handled by core2
in 32-bit mode.

From-SVN: r239498

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-prof/val-prof-7.c

index 10749112afe3cd7382b7815af442d142a24bd020..bd2a2d92d431e3fe1f69dd696308f7ddb9e6aff6 100644 (file)
@@ -1,3 +1,9 @@
+2016-08-16  Martin Liska  <mliska@suse.cz>
+
+       * gcc.dg/tree-prof/val-prof-7.c (int main): Change size
+       of memory operations so that it can be handled by core2
+       in 32-bit mode.
+
 2016-08-16  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/76783
index 3e636aab8c7fa62f1bccd653991829bae384f866..84ec9fbf7b579c3ffe1a23742621f3a5128a1e6e 100644 (file)
@@ -57,25 +57,25 @@ int main() {
   buffer1 = __builtin_malloc (1000);
   buffer2 = __builtin_malloc (1000);
 
-  test_stringops_with_values_0 (8, 111);
-  test_stringops_with_values_1 (111, 111);
-  test_stringops_with_values_2 (257, 111);
+  test_stringops_with_values_0 (8, 55);
+  test_stringops_with_values_1 (55, 55);
+  test_stringops_with_values_2 (257, 55);
 
   return 0;
 }
 
 /* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 8 stringop transformation on __builtin_bzero" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 111 stringop transformation on __builtin_bzero" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 257 stringop transformation on __builtin_bzero" 0 "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 55 stringop transformation on __builtin_bzero" "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 32 stringop transformation on __builtin_bzero" 0 "profile" } } */
 
 /* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 8 stringop transformation on __builtin_memcpy" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 111 stringop transformation on __builtin_memcpy" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 257 stringop transformation on __builtin_memcpy" 0 "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 55 stringop transformation on __builtin_memcpy" "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 32 stringop transformation on __builtin_memcpy" 0 "profile" } } */
 
 /* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 8 stringop transformation on __builtin_mempcpy" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 111 stringop transformation on __builtin_mempcpy" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 257 stringop transformation on __builtin_mempcpy" 0 "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 55 stringop transformation on __builtin_mempcpy" "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 32 stringop transformation on __builtin_mempcpy" 0 "profile" } } */
 
 /* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 8 stringop transformation on __builtin_memset" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 111 stringop transformation on __builtin_memset" "profile" } } */
-/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 257 stringop transformation on __builtin_memset" 0 "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump "Single value 55 stringop transformation on __builtin_memset" "profile" } } */
+/* { dg-final-use-not-autofdo { scan-ipa-dump-times "Single value 32 stringop transformation on __builtin_memset" 0 "profile" } } */