summaryrefslogtreecommitdiff
path: root/test/Transforms/DSAnalysis/simpletest.ll
blob: 9e6a2c240b15087435d10acb85a90c72b67f771a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | opt -analyze -tddatastructure

implementation

int *%foo(int *%A, int **%B, int *%C, int **%D, int* %E) {
	%a = load int* %A
	%b = load int** %B

	store int* %C, int** %D

	ret int* %E
}