diff options
author | ira <ira@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-13 20:56:30 +0000 |
---|---|---|
committer | ira <ira@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-13 20:56:30 +0000 |
commit | 550774cfea3a871cec6fda3bb6d1be23aca0ea58 (patch) | |
tree | b8c2857f08157a87815d12cacd5bd64a4dfa2f6f | |
parent | c74437935ea91d92ea0c224f17fe330fd9b2c9dc (diff) | |
download | gcc-550774cfea3a871cec6fda3bb6d1be23aca0ea58.tar.gz |
Made obvious fixes to remove this test's errors.
The reason it wasn't cought before was because when I ran the testsuite
on my OSX system while it did report a failure it only reported one
failure. I get this a lot for valid tests so I ignored it. I get it
on OSX because at the moment something is going on with 'expect' on OSX
erronously reporting errors that aren't really errors. This is currently
under investigation (it may be some kind of buffer/race condition).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48821 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/testsuite/g++.dg/other/deprecated.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.dg/other/deprecated.C b/gcc/testsuite/g++.dg/other/deprecated.C index 1cc917d8bd9..c4c4642688f 100644 --- a/gcc/testsuite/g++.dg/other/deprecated.C +++ b/gcc/testsuite/g++.dg/other/deprecated.C @@ -98,11 +98,11 @@ class T { int x; } __attribute__ ((deprecated)); -T *p2; +T *p3; inline void T::member1(int) {} -int T::member2(T *p) +int T::member3(T *p) { p->member1(1); /* { dg-warning "`member1' is deprecated" "" } */ (*p).member1(2); /* { dg-warning "`member1' is deprecated" "" } */ |