diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 21:21:24 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 21:21:24 +0000 |
commit | cf15aa0a586e3f5bc8f76924fe85290df53027f8 (patch) | |
tree | 57c5749382355d6b70c9a601cd97d2f091a955ee /test/FrontendC++ | |
parent | cccb1836a00b86d27cd669edb0f94f22d0c535c9 (diff) | |
download | external_llvm-cf15aa0a586e3f5bc8f76924fe85290df53027f8.zip external_llvm-cf15aa0a586e3f5bc8f76924fe85290df53027f8.tar.gz external_llvm-cf15aa0a586e3f5bc8f76924fe85290df53027f8.tar.bz2 |
Remove migrated test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138085 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++')
-rw-r--r-- | test/FrontendC++/2009-12-23-MissingSext.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC++/2009-12-23-MissingSext.cpp b/test/FrontendC++/2009-12-23-MissingSext.cpp deleted file mode 100644 index ee97881..0000000 --- a/test/FrontendC++/2009-12-23-MissingSext.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// RUN: %llvmgxx %s -S -o - | FileCheck %s -// The store of p.y into the temporary was not -// getting extended to 32 bits, so uninitialized -// bits of the temporary were used. 7366161. -struct foo { - char x:8; - signed int y:24; -}; -int bar(struct foo p, int x) { -// CHECK: bar -// CHECK: sext -// CHECK: sext - x = (p.y > x ? x : p.y); - return x; -// CHECK: return -} |