1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/CFrontend/2007-02-25-C-DotDotDot.c
Chris Lattner 51ee558f56 new testcase
llvm-svn: 34611
2007-02-25 22:02:01 +00:00

12 lines
313 B
C

// RUN: %llvmgcc -O0 -S -o - -emit-llvm -fno-inline -fno-unit-at-a-time %s | grep 'call float @foo'
// Make sure the call to foo is compiled as:
// call float @foo()
// not
// call float (...)* bitcast (float ()* @foo to float (...)*)( )
static float foo() { return 0.0; }
float bar() { return foo()*10.0;}