[llvm-commits] [llvm] r138085 - /llvm/trunk/test/FrontendC++/2009-12-23-MissingSext.cpp
Eric Christopher
echristo at apple.com
Fri Aug 19 14:21:24 PDT 2011
Author: echristo
Date: Fri Aug 19 16:21:24 2011
New Revision: 138085
URL: http://llvm.org/viewvc/llvm-project?rev=138085&view=rev
Log:
Remove migrated test.
Removed:
llvm/trunk/test/FrontendC++/2009-12-23-MissingSext.cpp
Removed: llvm/trunk/test/FrontendC++/2009-12-23-MissingSext.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-12-23-MissingSext.cpp?rev=138084&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-12-23-MissingSext.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-12-23-MissingSext.cpp (removed)
@@ -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
-}
More information about the llvm-commits
mailing list