blob: bff6ac7bc81c2ae63d66478d957bbfa8e0b7ce8c [file] [log] [blame]
Chandler Carruthbaab6832012-12-09 10:39:18 +00001// RUN: %clang_cc1 %s -triple x86_64-unknown-unknown -emit-llvm -o - | FileCheck %s
Eric Christopher8a8d6d82011-08-19 21:24:37 +00002// The store of p.y into the temporary was not
3// getting extended to 32 bits, so uninitialized
4// bits of the temporary were used. 7366161.
5struct foo {
6 char x:8;
7 signed int y:24;
8};
9int bar(struct foo p, int x) {
10// CHECK: bar
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070011// CHECK: %[[val:.*]] = load i32, i32* {{.*}}
Chandler Carruth72d2dab2012-12-06 11:14:44 +000012// CHECK-NEXT: ashr i32 %[[val]]
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070013// CHECK: = load i32, i32* {{.*}}
14// CHECK: = load i32, i32* {{.*}}
15// CHECK: %[[val:.*]] = load i32, i32* {{.*}}
Chandler Carruth72d2dab2012-12-06 11:14:44 +000016// CHECK-NEXT: ashr i32 %[[val]]
Eric Christopher8a8d6d82011-08-19 21:24:37 +000017 x = (p.y > x ? x : p.y);
18 return x;
19// CHECK: ret
20}