980526-1.c: Do nothing if NO_LABEL_VALUES is defined.
authorJeffrey A Law <law@cygnus.com>
Sat, 21 Nov 1998 20:42:05 +0000 (20:42 +0000)
committerJeff Law <law@gcc.gnu.org>
Sat, 21 Nov 1998 20:42:05 +0000 (13:42 -0700)

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

From-SVN: r23744

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

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