1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/Inline/basictest.ll
Chris Lattner 40321e039f Basic test of the inlinr
llvm-svn: 2767
2002-06-24 17:46:05 +00:00

12 lines
126 B
LLVM

int %func(int %i) {
ret int %i
}
int %main(int %argc) {
%X = call int %func(int 7)
%Y = add int %X, %argc
ret int %Y
}