diff options
Diffstat (limited to 'test/Transforms/DSAnalysis')
-rw-r--r-- | test/Transforms/DSAnalysis/arraymerge.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/arraytest.ll | 3 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/badcases.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/basictest.ll | 3 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/fieldmerge.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/goodcases.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/indcalltest.ll | 3 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/misctests.ll | 3 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/physicalsubtype.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/recursion.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/simplest-test.ll | 2 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/simpletest.ll | 1 | ||||
-rw-r--r-- | test/Transforms/DSAnalysis/structpadding.ll | 1 |
13 files changed, 24 insertions, 4 deletions
diff --git a/test/Transforms/DSAnalysis/arraymerge.ll b/test/Transforms/DSAnalysis/arraymerge.ll index 2d0a577..c4ac718 100644 --- a/test/Transforms/DSAnalysis/arraymerge.ll +++ b/test/Transforms/DSAnalysis/arraymerge.ll @@ -2,6 +2,8 @@ ; folded completely away if possible. This is a very common case, so it should ; be efficient. ; +; RUN: analyze %s -tddatastructure +; implementation sbyte* %merge1([100 x sbyte] *%A, long %N) { diff --git a/test/Transforms/DSAnalysis/arraytest.ll b/test/Transforms/DSAnalysis/arraytest.ll index 164eb74..521bd63 100644 --- a/test/Transforms/DSAnalysis/arraytest.ll +++ b/test/Transforms/DSAnalysis/arraytest.ll @@ -1,4 +1,5 @@ - +; +; RUN: analyze %s -tddatastructure %crazy = type [2 x { [2 x sbyte], short } ] implementation diff --git a/test/Transforms/DSAnalysis/badcases.ll b/test/Transforms/DSAnalysis/badcases.ll index 1628452..b841b6e 100644 --- a/test/Transforms/DSAnalysis/badcases.ll +++ b/test/Transforms/DSAnalysis/badcases.ll @@ -1,4 +1,6 @@ ; This file contains a list of situations where node folding should happen... +; +; RUN: analyze %s -tddatastructure implementation diff --git a/test/Transforms/DSAnalysis/basictest.ll b/test/Transforms/DSAnalysis/basictest.ll index 407d495..615e021 100644 --- a/test/Transforms/DSAnalysis/basictest.ll +++ b/test/Transforms/DSAnalysis/basictest.ll @@ -1,5 +1,6 @@ - ; very simple test +; +; RUN: analyze %s -tddatastructure implementation diff --git a/test/Transforms/DSAnalysis/fieldmerge.ll b/test/Transforms/DSAnalysis/fieldmerge.ll index 59c1ea5..4dcefb7 100644 --- a/test/Transforms/DSAnalysis/fieldmerge.ll +++ b/test/Transforms/DSAnalysis/fieldmerge.ll @@ -1,3 +1,5 @@ +; +; RUN: analyze %s -tddatastructure %str = type { int*, int* } diff --git a/test/Transforms/DSAnalysis/goodcases.ll b/test/Transforms/DSAnalysis/goodcases.ll index 6d1fe62..1d545b3 100644 --- a/test/Transforms/DSAnalysis/goodcases.ll +++ b/test/Transforms/DSAnalysis/goodcases.ll @@ -1,5 +1,7 @@ ; This file contains a list of cases where node folding should NOT happen ; +; RUN: analyze %s -tddatastructure +; implementation diff --git a/test/Transforms/DSAnalysis/indcalltest.ll b/test/Transforms/DSAnalysis/indcalltest.ll index a45c3b9..16cb6be 100644 --- a/test/Transforms/DSAnalysis/indcalltest.ll +++ b/test/Transforms/DSAnalysis/indcalltest.ll @@ -1,3 +1,6 @@ +; +; RUN: analyze %s -tddatastructure + %G = global int 2 ; <int*> [#uses=1] %H = global int* null diff --git a/test/Transforms/DSAnalysis/misctests.ll b/test/Transforms/DSAnalysis/misctests.ll index 4c692b4..29c7079 100644 --- a/test/Transforms/DSAnalysis/misctests.ll +++ b/test/Transforms/DSAnalysis/misctests.ll @@ -1,4 +1,5 @@ - +; +; RUN: analyze %s -tddatastructure int* %test1(int *%A) { %R = getelementptr int* %A, long 1 diff --git a/test/Transforms/DSAnalysis/physicalsubtype.ll b/test/Transforms/DSAnalysis/physicalsubtype.ll index cdda0d5..2beb3ec 100644 --- a/test/Transforms/DSAnalysis/physicalsubtype.ll +++ b/test/Transforms/DSAnalysis/physicalsubtype.ll @@ -1,5 +1,7 @@ ; A test for "physical subtyping" used in some C programs... ; +; RUN: analyze %s -tddatastructure +; %ST = type { int, int* } ; "Subtype" %DT = type { int, int*, int } ; "derived type" diff --git a/test/Transforms/DSAnalysis/recursion.ll b/test/Transforms/DSAnalysis/recursion.ll index 669b0a4..6acdd24 100644 --- a/test/Transforms/DSAnalysis/recursion.ll +++ b/test/Transforms/DSAnalysis/recursion.ll @@ -1,3 +1,5 @@ +; RUN: analyze %s -tddatastructure + implementation ; Functions: declare void %__main() diff --git a/test/Transforms/DSAnalysis/simplest-test.ll b/test/Transforms/DSAnalysis/simplest-test.ll index 1a1bcc2..b757403 100644 --- a/test/Transforms/DSAnalysis/simplest-test.ll +++ b/test/Transforms/DSAnalysis/simplest-test.ll @@ -1,4 +1,4 @@ - +; RUN: analyze %s -tddatastructure void %foo(int* %X) { store int 4, int* %X diff --git a/test/Transforms/DSAnalysis/simpletest.ll b/test/Transforms/DSAnalysis/simpletest.ll index f600136..298aa83 100644 --- a/test/Transforms/DSAnalysis/simpletest.ll +++ b/test/Transforms/DSAnalysis/simpletest.ll @@ -1,3 +1,4 @@ +; RUN: analyze %s -tddatastructure implementation diff --git a/test/Transforms/DSAnalysis/structpadding.ll b/test/Transforms/DSAnalysis/structpadding.ll index 52a124a..693c988 100644 --- a/test/Transforms/DSAnalysis/structpadding.ll +++ b/test/Transforms/DSAnalysis/structpadding.ll @@ -1,3 +1,4 @@ +; RUN: analyze %s -tddatastructure %str = type { int, int* } |