Skip to content

Commit 8956e7c

Browse files
committed
indentation
1 parent 62c84ae commit 8956e7c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

clang/test/CIR/CodeGen/record-zero-init-padding.c

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@
66
// RUN: FileCheck --input-file=%t.ll %s -check-prefix=OGCG
77

88
struct padding_after_field {
9-
char c;
10-
int i;
9+
char c;
10+
int i;
1111
};
1212

1313
struct bitfield_with_padding {
14-
unsigned int a : 3;
15-
unsigned int b : 5;
16-
int c;
14+
unsigned int a : 3;
15+
unsigned int b : 5;
16+
int c;
1717
};
1818

1919
struct tail_padding {
20-
int a;
21-
char b;
20+
int a;
21+
char b;
2222
};
2323

2424
struct multiple_padding {
25-
char a;
26-
short b;
27-
long long c;
25+
char a;
26+
short b;
27+
long long c;
2828
};
2929

3030
void test_zero_init_padding(void) {
31-
static const struct padding_after_field paf = {1, 42};
32-
static const struct bitfield_with_padding bfp = {1, 2, 99};
33-
static const struct tail_padding tp = {10, 20};
34-
static const struct multiple_padding mp = {5, 10, 100};
31+
static const struct padding_after_field paf = {1, 42};
32+
static const struct bitfield_with_padding bfp = {1, 2, 99};
33+
static const struct tail_padding tp = {10, 20};
34+
static const struct multiple_padding mp = {5, 10, 100};
3535
}
3636

3737
// Type definitions for anonymous structs with padding

0 commit comments

Comments
 (0)