- Make BranchProbability constructor public.
[llvm/stm8.git] / test / FrontendC / 2007-02-25-C-DotDotDot.c
blob3f96fd1f9e1f2b3af743124b31e5f0a5d4825005
1 // RUN: %llvmgcc -O0 -S -o - -fno-inline -fno-unit-at-a-time %s | \
2 // RUN: grep {call float @foo}
4 // Make sure the call to foo is compiled as:
5 // call float @foo()
6 // not
7 // call float (...)* bitcast (float ()* @foo to float (...)*)( )
9 static float foo() { return 0.0; }
10 float bar() { return foo()*10.0;}