aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/DSAnalysis/simpletest.ll
blob: 298aa836710bd96ddd530a63bf2db0ff028d5a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: analyze %s -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
}