diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 22:17:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 22:17:09 +0000 |
commit | 58ce352d329835e6ceedb39b5d9ca30a9c143a35 (patch) | |
tree | 6b8c4196302bc72933551faec6ddc6c6cb09ec3f /llvm/test/FrontendC++/2009-04-23-bool2.cpp | |
parent | cae25b58fc34e7ea0e814371b582936890ce9dd5 (diff) | |
download | bcm5719-llvm-58ce352d329835e6ceedb39b5d9ca30a9c143a35.tar.gz bcm5719-llvm-58ce352d329835e6ceedb39b5d9ca30a9c143a35.zip |
Remove tests migrated to clang or are unnecessary.
llvm-svn: 138115
Diffstat (limited to 'llvm/test/FrontendC++/2009-04-23-bool2.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2009-04-23-bool2.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/test/FrontendC++/2009-04-23-bool2.cpp b/llvm/test/FrontendC++/2009-04-23-bool2.cpp deleted file mode 100644 index 2c76d982ea6..00000000000 --- a/llvm/test/FrontendC++/2009-04-23-bool2.cpp +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %llvmgxx -S %s -o /dev/null -// g++.old-deja/g++.jason/bool2.C from gcc testsuite. -// Crashed before 67975 went in. -struct F { - bool b1 : 1; - bool b2 : 7; -}; - -int main() -{ - F f = { true, true }; - - if (int (f.b1) != 1) - return 1; -} |