mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
eb3cd5e822
llvm-svn: 51695
13 lines
325 B
C
13 lines
325 B
C
// RUN: %llvmgcc -O0 -S -o - -emit-llvm -fno-inline -fno-unit-at-a-time %s | \
|
|
// RUN: 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;}
|
|
|
|
|