[llvm-commits] [poolalloc] r137579 - in /poolalloc/trunk/test/type_checks/correct: basic.c basic_repeat.c

Will Dietz wdietz2 at illinois.edu
Sun Aug 14 02:45:32 PDT 2011


Author: wdietz2
Date: Sun Aug 14 04:45:32 2011
New Revision: 137579

URL: http://llvm.org/viewvc/llvm-project?rev=137579&view=rev
Log:
Don't include -ds-aa checks in type_check lit tests.

Modified:
    poolalloc/trunk/test/type_checks/correct/basic.c
    poolalloc/trunk/test/type_checks/correct/basic_repeat.c

Modified: poolalloc/trunk/test/type_checks/correct/basic.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/type_checks/correct/basic.c?rev=137579&r1=137578&r2=137579&view=diff
==============================================================================
--- poolalloc/trunk/test/type_checks/correct/basic.c (original)
+++ poolalloc/trunk/test/type_checks/correct/basic.c Sun Aug 14 04:45:32 2011
@@ -13,15 +13,6 @@
 #include <stdio.h>
 //This is a basic use of vararg pointer use
 
-//--build the code into a .bc
-//RUN: clang -O0 %s -S -emit-llvm -o - | llvm-as > %t.bc
-//--check if ds-aa breaks, breaks opts, or results in miscompiled code
-//RUN: lli %t.bc > %t.refout
-//RUN: dsaopt %t.bc -ds-aa -O3 -o - | lli > %t.out
-//RUN: diff %t.refout %t.out
-//--check properties of this particular test
-//N/A
-
 static int get( int unused, ... )
 {
   va_list ap;

Modified: poolalloc/trunk/test/type_checks/correct/basic_repeat.c
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/type_checks/correct/basic_repeat.c?rev=137579&r1=137578&r2=137579&view=diff
==============================================================================
--- poolalloc/trunk/test/type_checks/correct/basic_repeat.c (original)
+++ poolalloc/trunk/test/type_checks/correct/basic_repeat.c Sun Aug 14 04:45:32 2011
@@ -13,15 +13,6 @@
 #include <stdio.h>
 //This is a basic use of vararg pointer use
 
-//--build the code into a .bc
-//RUN: clang -O0 %s -S -emit-llvm -o - | llvm-as > %t.bc
-//--check if ds-aa breaks, breaks opts, or results in miscompiled code
-//RUN: lli %t.bc > %t.refout
-//RUN: dsaopt %t.bc -ds-aa -O3 -o - | lli > %t.out
-//RUN: diff %t.refout %t.out
-//--check properties of this particular test
-//N/A
-
 static int get( int unused, ... )
 {
   va_list ap;





More information about the llvm-commits mailing list