mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
12 lines
169 B
C
12 lines
169 B
C
// RUN: %clang_cc1 -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;
|
|
}
|
|
|