mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
12 lines
167 B
C
12 lines
167 B
C
// RUN: clang-cc -emit-llvm %s -o %t
|
|
// PR1824
|
|
|
|
int foo(int x, short y) {
|
|
return x ?: y;
|
|
}
|
|
|
|
// rdar://6586493
|
|
float test(float x, int Y) {
|
|
return Y != 0 ? : x;
|
|
}
|
|
|