mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
10 lines
189 B
C
10 lines
189 B
C
|
/* Test problem where bad code was generated with a ?: statement was
|
||
|
in a function call argument */
|
||
|
|
||
|
void foo(int, double, float);
|
||
|
|
||
|
void bar(int x) {
|
||
|
foo(x, x ? 1.0 : 12.5, 1.0f);
|
||
|
}
|
||
|
|