mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
8a261626fc
TestRunner tests). This makes creating the new test database class easier to implement. llvm-svn: 8841
13 lines
192 B
LLVM
13 lines
192 B
LLVM
; 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
|
|
}
|