diff --git a/test/Transforms/Inline/inline_constprop.ll b/test/Transforms/Inline/inline_constprop.ll new file mode 100644 index 00000000000..edfb0905f91 --- /dev/null +++ b/test/Transforms/Inline/inline_constprop.ll @@ -0,0 +1,15 @@ +; RUN: llvm-as < %s | opt -inline -disable-output && +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep callee && +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep div + +implementation + +internal int %callee(int %A, int %B) { + %C = div int %A, %B + ret int %C +} + +int %test() { + %X = call int %callee(int 10, int 3) + ret int %X +}