980526-1.c: Do nothing if NO_LABEL_VALUES is defined.

�
        * gcc.c-torture/execute/980526-1.c: Do nothing if NO_LABEL_VALUES
        is defined.

From-SVN: r23744
This commit is contained in:
Jeffrey A Law 1998-11-21 20:42:05 +00:00 committed by Jeff Law
parent 42f989ffee
commit 02d0eb47e3
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Sat Nov 21 21:41:05 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/980526-1.c: Do nothing if NO_LABEL_VALUES
is defined.
1998-11-18 Dave Love <d.love@dl.ac.uk>
* g77.f-torture/compile/981117-1.f: New test.

View File

@ -29,7 +29,9 @@ static void do2(void){
}
int main(void){
#ifndef NO_LABEL_VALUES
do1();
do2();
#endif
exit(0);
}