projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f65d320
)
Fix copy/paste error.
author
Paul Brook
<pbrook@gcc.gnu.org>
Thu, 1 Jul 2004 15:23:55 +0000
(15:23 +0000)
committer
Paul Brook
<pbrook@gcc.gnu.org>
Thu, 1 Jul 2004 15:23:55 +0000
(15:23 +0000)
From-SVN: r83986
gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
patch
|
blob
|
history
diff --git
a/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
b/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
index 273d137b85e64004cc8a05084b5274eb678c60d1..c3408810aef718fc613b4fca7ef918bd01271e0a 100644
(file)
--- a/
gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
+++ b/
gcc/testsuite/g++.old-deja/g++.abi/arraynew.C
@@
-55,7
+55,7
@@
void check_cookie (int i)
exit (i);
#ifdef __ARM_EABI__
- s
ize_t *s
p = ((size_t *) a) - 2;
+ sp = ((size_t *) a) - 2;
if (*sp != sizeof (T))
exit (i);
#endif
@@
-85,7
+85,7
@@
void check_placement_cookie (int i)
exit (i);
#ifdef __ARM_EABI__
- s
ize_t *s
p = ((size_t *) a) - 2;
+ sp = ((size_t *) a) - 2;
if (*sp != sizeof (T))
exit (i);
#endif