1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove migrated test.

llvm-svn: 138085
This commit is contained in:
Eric Christopher 2011-08-19 21:21:24 +00:00
parent e34873f1b0
commit 624d962a50

View File

@ -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
}