From: Paul Brook Date: Thu, 1 Jul 2004 15:23:55 +0000 (+0000) Subject: Fix copy/paste error. X-Git-Tag: releases/gcc-4.0.0~7132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce940947fbf4ec7e2f2979a9ccf09cdd736514b3;p=thirdparty%2Fgcc.git Fix copy/paste error. From-SVN: r83986 --- diff --git a/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C b/gcc/testsuite/g++.old-deja/g++.abi/arraynew.C index 273d137b85e6..c3408810aef7 100644 --- 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__ - size_t *sp = ((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__ - size_t *sp = ((size_t *) a) - 2; + sp = ((size_t *) a) - 2; if (*sp != sizeof (T)) exit (i); #endif