mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-18 03:46:39 +00:00
13 lines
164 B
C
13 lines
164 B
C
// RUN: clang -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;
|
|
}
|
|
|