diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-09 09:55:37 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-09 09:55:37 +0000 |
commit | 7fea7f4a7d3fef7a98ddc65dac7ccb00c8ec6754 (patch) | |
tree | 185581872a2685d28b1fb418e4c58dc55b3669ce /gcc/testsuite/gcc.misc-tests | |
parent | f181ab6acb4868f04d624cda2b2e9b7d5e7c1ee8 (diff) | |
download | gcc-7fea7f4a7d3fef7a98ddc65dac7ccb00c8ec6754.tar.gz |
Test all builds, not just native
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28623 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.misc-tests')
-rw-r--r-- | gcc/testsuite/gcc.misc-tests/m-un-2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gcc.misc-tests/m-un-2.c b/gcc/testsuite/gcc.misc-tests/m-un-2.c index 81d6dca363f..06ff5269ee2 100644 --- a/gcc/testsuite/gcc.misc-tests/m-un-2.c +++ b/gcc/testsuite/gcc.misc-tests/m-un-2.c @@ -15,14 +15,14 @@ struct vtable { struct vtable mtable = { malloc, free -}; /* { dg-warning "missing initializer" "warning regression" { target native } {18} } */ - /* { dg-warning "initialization for `mtable._realloc'" "warning regression" { target native } {18} } */ +}; /* { dg-warning "missing initializer" "warning regression" { target *-*-* } {18} } */ + /* { dg-warning "initialization for `mtable._realloc'" "warning regression" { target *-*-* } {18} } */ struct vtable mtable2 = { ._malloc = malloc, ._realloc = realloc -}; /* { dg-warning "missing initializer" "warning regression" { target native } {24} } */ - /* { dg-warning "initialization for `mtable2._free'" "warning regression" { target native } {24} } */ +}; /* { dg-warning "missing initializer" "warning regression" { target *-*-* } {24} } */ + /* { dg-warning "initialization for `mtable2._free'" "warning regression" { target *-*-* } {24} } */ struct vtable mtable3 = { ._free = free, |