aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorStuart Hastings <stuart@apple.com>2006-03-17 23:08:13 +0000
committerStuart Hastings <stuart@apple.com>2006-03-17 23:08:13 +0000
commit185064d6ad05a5cde8a8f4d03e0f6bee09d39db4 (patch)
treedc1d735a4762a0348e431a2ac2e20674d732f5ee /gcc
parent508bd5898a938044d31ab3b45048ca1037b356c9 (diff)
* g++.dg/4425360.C: Tweak for -m64.
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/apple-local-200502-branch@112189 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog.apple-ppc4
-rw-r--r--gcc/testsuite/g++.dg/4425360.C2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog.apple-ppc b/gcc/testsuite/ChangeLog.apple-ppc
index 70bb081d9ea..9ad97f83c38 100644
--- a/gcc/testsuite/ChangeLog.apple-ppc
+++ b/gcc/testsuite/ChangeLog.apple-ppc
@@ -1,3 +1,7 @@
+2006-03-17 Stuart Hastings <stuart@apple.com>
+
+ * g++.dg/4425360.C: Tweak for -m64.
+
2006-03-16 Geoffrey Keating <geoffk@apple.com>
Radar 4481011
diff --git a/gcc/testsuite/g++.dg/4425360.C b/gcc/testsuite/g++.dg/4425360.C
index 6843a02dc7f..737565c7e07 100644
--- a/gcc/testsuite/g++.dg/4425360.C
+++ b/gcc/testsuite/g++.dg/4425360.C
@@ -27,7 +27,7 @@ int main (int argc, char * const argv[])
}
packet->next = 0;
/* printf("in loop %d head = 0x%X next = 0x%X\n", count, (unsigned int)head, (unsigned int)head->next); */
- printf("", count, (unsigned int)head, (unsigned int)head->next);
+ printf("", count, head, head->next);
} while (++count < num);
if (!head->next)
abort ();