aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/DSAnalysis/basictest.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/DSAnalysis/basictest.ll')
-rw-r--r--test/Transforms/DSAnalysis/basictest.ll23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/Transforms/DSAnalysis/basictest.ll b/test/Transforms/DSAnalysis/basictest.ll
deleted file mode 100644
index d2a02a8a7f..0000000000
--- a/test/Transforms/DSAnalysis/basictest.ll
+++ /dev/null
@@ -1,23 +0,0 @@
-; very simple test
-;
-; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -tddatastructure
-
-implementation
-
-int *%foo(ulong %A, double %B, long %C) {
- %X = malloc int*
- %D = cast int** %X to ulong
- %E = cast ulong %D to int*
- store int* %E, int** %X
-
- %F = malloc {int}
- %G = getelementptr {int}* %F, long 0, uint 0
- store int* %G, int** %X
-
- %K = malloc int **
- store int** %X, int***%K
-
- %H = cast long %C to int*
- ret int* null ; %H
-}
-