summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/sso/u5.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/sso/u5.c')
-rw-r--r--gcc/testsuite/gcc.dg/sso/u5.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/gcc.dg/sso/u5.c b/gcc/testsuite/gcc.dg/sso/u5.c
index 01ca8b58f13..8b9d09719da 100644
--- a/gcc/testsuite/gcc.dg/sso/u5.c
+++ b/gcc/testsuite/gcc.dg/sso/u5.c
@@ -19,7 +19,7 @@ int main (void)
put ("Local_R1 :");
dump (&Local_R1, sizeof (struct R1));
new_line ();
- /* { dg-output "Local_R1 : 01 00 00 00 12 00 ab 00 34 00 cd 00 56 00 ef 00\n" } */
+ /* { dg-output "Local_R1 : 01 00 00 00 12 00 ab 00 34 00 cd 00 56 00 ef 00.*\n" } */
Local_R2.I = 1;
Local_R2.A[0] = 0xAB0012;
@@ -28,25 +28,25 @@ int main (void)
put ("Local_R2 :");
dump (&Local_R2, sizeof (struct R2));
new_line ();
- /* { dg-output "Local_R2 : 00 00 00 01 00 ab 00 12 00 cd 00 34 00 ef 00 56\n" } */
+ /* { dg-output "Local_R2 : 00 00 00 01 00 ab 00 12 00 cd 00 34 00 ef 00 56.*\n" } */
C1 = Local_R1.A[Local_R1.I];
printf ("C1 : %d\n", C1);
- /* { dg-output "C1 : 13434932\n" } */
+ /* { dg-output "C1 : 13434932.*\n" } */
Local_R1.I++;
C1 = Local_R1.A[Local_R1.I];
printf ("C1 : %d\n", C1);
- /* { dg-output "C1 : 15663190\n" } */
+ /* { dg-output "C1 : 15663190.*\n" } */
C2 = Local_R2.A[Local_R2.I];
printf ("C2 : %d\n", C2);
- /* { dg-output "C2 : 13434932\n" } */
+ /* { dg-output "C2 : 13434932.*\n" } */
Local_R2.I++;
C2 = Local_R2.A[Local_R2.I];
printf ("C2 : %d\n", C2);
- /* { dg-output "C2 : 15663190\n" } */
+ /* { dg-output "C2 : 15663190.*\n" } */
return 0;
}