diff options
| author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-07 06:49:02 +0000 |
|---|---|---|
| committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-07 06:49:02 +0000 |
| commit | 13b85e3957dc7b75e9b5f98e95d8aafb470e0d34 (patch) | |
| tree | 8964a78524f6e8ace029487c6726e48d6fbc2176 | |
| parent | ed601fffae263e00031717027b98cf94f72287ae (diff) | |
| download | ppe42-gcc-13b85e3957dc7b75e9b5f98e95d8aafb470e0d34.tar.gz ppe42-gcc-13b85e3957dc7b75e9b5f98e95d8aafb470e0d34.zip | |
* gcc.dg/i386-local.c: Handle -m32/-m64 runs correctly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93039 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/i386-local.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b3ac9e9e068..b4a0f099cc3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-01-07 Andreas Jaeger <aj@suse.de> + + * gcc.dg/i386-local.c: Handle -m32/-m64 runs correctly. + 2005-01-07 Bud Davis <bdavis9659@comcast.net> PR fortran/18398 diff --git a/gcc/testsuite/gcc.dg/i386-local.c b/gcc/testsuite/gcc.dg/i386-local.c index 45d6aba53db..2fda2a2fc99 100644 --- a/gcc/testsuite/gcc.dg/i386-local.c +++ b/gcc/testsuite/gcc.dg/i386-local.c @@ -1,7 +1,7 @@ /* { dg-do compile { target i?86-*-* x86_64-*-* } } */ /* { dg-options "-O2 -funit-at-a-time" } */ -/* { dg-final { scan-assembler "magic\[^\\n\]*eax" { target i?86-*-* } } } */ -/* { dg-final { scan-assembler "magic\[^\\n\]*edi" { target x86_64-*-* } } } */ +/* { dg-final { scan-assembler "magic\[^\\n\]*eax" { target ilp32 } } } */ +/* { dg-final { scan-assembler "magic\[^\\n\]*edi" { target lp64 } } } */ /* Verify that local calling convention is used. */ static t(int) __attribute__ ((noinline)); |

