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:
parent
e34873f1b0
commit
624d962a50
@ -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user