diff options
Diffstat (limited to 'test/FrontendC++/2003-10-17-BoolBitfields.cpp')
-rw-r--r-- | test/FrontendC++/2003-10-17-BoolBitfields.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC++/2003-10-17-BoolBitfields.cpp b/test/FrontendC++/2003-10-17-BoolBitfields.cpp deleted file mode 100644 index 103945d..0000000 --- a/test/FrontendC++/2003-10-17-BoolBitfields.cpp +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -struct test { - bool A : 1; - bool B : 1; -}; - -void foo(test *T) { - T->B = true; -} - |