authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 21 Nov 1998 20:42:05 +0000 (20:42 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 21 Nov 1998 20:42:05 +0000 (20:42 +0000)
        * gcc.c-torture/execute/980526-1.c: Do nothing if NO_LABEL_VALUES
        is defined.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23744 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/980526-1.c

index 70d650e..6c40ff1 100644 (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.
index 491068f..57a910e 100644 (file)
@@ -29,7 +29,9 @@ static void do2(void){
 }
  
 int main(void){
+#ifndef NO_LABEL_VALUES
   do1();
   do2();
+#endif
   exit(0);
 }