directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
7 lines
90 B
C
7 lines
90 B
C
// RUN: clang -emit-llvm %s -o %t
|
|
// PR1824
|
|
|
|
int foo(int x, short y) {
|
|
return x ?: y;
|
|
}
|