diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-24 21:27:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-24 21:27:41 +0000 |
commit | b9e7186ade7f735c07de57041659b1b40af30b15 (patch) | |
tree | 281ce7affc8ff80cac93a6bcd3aab6f82a4d3f4f /llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll | |
parent | a17c1f173539ad84701a5fc903aba2ee49f3ad59 (diff) | |
download | bcm5719-llvm-b9e7186ade7f735c07de57041659b1b40af30b15.tar.gz bcm5719-llvm-b9e7186ade7f735c07de57041659b1b40af30b15.zip |
Testcases to show what -funcresolve does.
llvm-svn: 2744
Diffstat (limited to 'llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll')
-rw-r--r-- | llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll b/llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll new file mode 100644 index 00000000000..606f92f7dd4 --- /dev/null +++ b/llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll @@ -0,0 +1,23 @@ +; This shows where the function is called with the prototype indicating a +; return type doesn't exists, but it really does. +; +; RUN: if as < %s | opt -funcresolve +; RUN: then echo "opt ok" +; RUN: else exit 1 # Make sure opt doesn't abort! +; RUN: fi +; +; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call +; RUN: then exit 1 +; RUN: else exit 0 +; RUN: fi + +declare void %foo(...) + +int %foo(int %x, float %y) { + ret int %x +} + +int %bar() { + call void (...)* %foo(double 12.5, int 48) + ret int 6 +} |