summaryrefslogtreecommitdiff
path: root/test/Transforms/DSAnalysis/simpletest.ll
blob: 80b94335d3d9b863d3a058e733f188684179ceeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt -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
}