Skip to content

Commit 54b237e

Browse files
committed
apply Hubert's suggestion
1 parent a50d3da commit 54b237e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clang/test/CodeGen/PowerPC/transparent_union.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
// RUN: -emit-llvm -fshort-enums %s -o - | FileCheck %s --check-prefixes=CHECK,CHECK-32
1111

1212
typedef union tu_c {
13-
char a;
14-
char b;
13+
signed char a;
14+
signed char b;
1515
} tu_c_t __attribute__((transparent_union));
1616

1717
typedef union tu_s {
18-
short a;
18+
short a;
1919
} tu_s_t __attribute__((transparent_union));
2020

2121
typedef union tu_us {
22-
unsigned short a;
22+
unsigned short a;
2323
} tu_us_t __attribute__((transparent_union));
2424

2525
typedef union tu_l {
26-
long a;
26+
long a;
2727
} tu_l_t __attribute__((transparent_union));
2828

2929
// CHECK-LABEL: define{{.*}} void @ftest0(

0 commit comments

Comments
 (0)