directory. - Removed .ll from the svn:ignore lists to try and prevent this. - Added svn:ignore on test/Misc/Output llvm-svn: 55104
13 lines
202 B
C
13 lines
202 B
C
// RUN: clang %s -emit-llvm -o %t
|
|
typedef struct { unsigned int i: 1; } c;
|
|
const c d = { 1 };
|
|
|
|
// PR2310
|
|
struct Token {
|
|
unsigned n : 31;
|
|
};
|
|
void sqlite3CodeSubselect(){
|
|
struct Token one = { 1 };
|
|
}
|
|
|