* gcc.c-torture/execute/align-3.c: Remove function addr check.

From-SVN: r126597
This commit is contained in:
Steve Ellcey 2007-07-12 19:06:26 +00:00 committed by Steve Ellcey
parent c83c48792f
commit 26a9718401
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2007-07-12 Steve Ellcey <sje@cup.hp.com>
* gcc.c-torture/execute/align-3.c: Remove function addr check.
2007-07-12 Dorit Nuzman <dorit@il.ibm.com>
Devang Patel <dpatel@apple.com>

View file

@ -6,8 +6,6 @@ void func(void)
int main()
{
if (((long)func & 0xFF) != 0)
abort ();
if (__alignof__(func) != 256)
abort ();
return 0;