mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 13:39:58 +08:00
* gcc.c-torture/execute/990827-1.c: Fix typo.
From-SVN: r29082
This commit is contained in:
parent
a9183fef29
commit
eb898ce420
@ -1,3 +1,7 @@
|
||||
Fri Sep 3 10:39:38 BST 1999 Richard Earnshaw <rearnsha@arm.com>
|
||||
|
||||
* gcc.c-torture/execute/990827-1.c: Fix typo.
|
||||
|
||||
Fri Sep 03 09:31:10 BST 1999 Nathan Sidwell <nathan@acm.org>
|
||||
|
||||
* g++.old-deja/g++.other/deref1.C: New test.
|
||||
|
@ -9,11 +9,11 @@ unsigned test(unsigned one , unsigned bit)
|
||||
|
||||
int main()
|
||||
{
|
||||
if ((test 1,0) != 0)
|
||||
if (test (1,0) != 0)
|
||||
abort ();
|
||||
if ((test 1,1) != 1)
|
||||
if (test (1,1) != 1)
|
||||
abort ();
|
||||
if ((test 1,65535) != 1)
|
||||
if (test (1,65535) != 1)
|
||||
abort ();
|
||||
exit (0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user