xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2002-02-13-ConditionalInCall.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 /* Test problem where bad code was generated with a ?: statement was
4    in a function call argument */
5 
6 void foo(int, double, float);
7 
8 void bar(int x) {
9   foo(x, x ? 1.0 : 12.5, 1.0f);
10 }
11 
12