File tree Expand file tree Collapse file tree 16 files changed +96
-0
lines changed
Expand file tree Collapse file tree 16 files changed +96
-0
lines changed Original file line number Diff line number Diff line change 2121
2222#define QUOTE '\''
2323
24+ #define SHIFT 3
25+
2426#define TAB '\t'
2527
28+ #define XBOOL 1
29+
30+ #define XFALSE ((0 << SHIFT) | XBOOL)
31+
32+ #define XTRUE (1 << (SHIFT | XBOOL))
33+
2634#define ZOM 3.14
2735
2836typedef struct Foo {
Original file line number Diff line number Diff line change 2121
2222#define QUOTE '\''
2323
24+ #define SHIFT 3
25+
2426#define TAB '\t'
2527
28+ #define XBOOL 1
29+
30+ #define XFALSE ((0 << SHIFT) | XBOOL)
31+
32+ #define XTRUE (1 << (SHIFT | XBOOL))
33+
2634#define ZOM 3.14
2735
2836typedef struct Foo {
Original file line number Diff line number Diff line change 55
66#define PREFIX_LEN 42
77
8+ #define PREFIX_X (42 << 42)
9+
10+ #define PREFIX_Y (PREFIX_X + PREFIX_X)
11+
812typedef int32_t PREFIX_NamedLenArray [PREFIX_LEN ];
913
1014typedef int32_t PREFIX_ValuedLenArray [42 ];
Original file line number Diff line number Diff line change 55
66#define PREFIX_LEN 42
77
8+ #define PREFIX_X (42 << 42)
9+
10+ #define PREFIX_Y (PREFIX_X + PREFIX_X)
11+
812typedef int32_t PREFIX_NamedLenArray [PREFIX_LEN ];
913
1014typedef int32_t PREFIX_ValuedLenArray [42 ];
Original file line number Diff line number Diff line change 2121
2222#define QUOTE '\''
2323
24+ #define SHIFT 3
25+
2426#define TAB '\t'
2527
28+ #define XBOOL 1
29+
30+ #define XFALSE ((0 << SHIFT) | XBOOL)
31+
32+ #define XTRUE (1 << (SHIFT | XBOOL))
33+
2634#define ZOM 3.14
2735
2836typedef struct {
Original file line number Diff line number Diff line change 2121
2222#define QUOTE '\''
2323
24+ #define SHIFT 3
25+
2426#define TAB '\t'
2527
28+ #define XBOOL 1
29+
30+ #define XFALSE ((0 << SHIFT) | XBOOL)
31+
32+ #define XTRUE (1 << (SHIFT | XBOOL))
33+
2634#define ZOM 3.14
2735
2836typedef struct {
Original file line number Diff line number Diff line change @@ -21,8 +21,16 @@ static const int8_t POS_ONE = 1;
2121
2222static const uint32_t QUOTE = ' \' ' ;
2323
24+ static const int64_t SHIFT = 3 ;
25+
2426static const uint32_t TAB = ' \t ' ;
2527
28+ static const int64_t XBOOL = 1 ;
29+
30+ static const int64_t XFALSE = ((0 << SHIFT) | XBOOL);
31+
32+ static const int64_t XTRUE = (1 << (SHIFT | XBOOL));
33+
2634static const float ZOM = 3.14 ;
2735
2836struct Foo {
Original file line number Diff line number Diff line change 55
66#define PREFIX_LEN 42
77
8+ #define PREFIX_X (42 << 42)
9+
10+ #define PREFIX_Y (PREFIX_X + PREFIX_X)
11+
812typedef int32_t PREFIX_NamedLenArray [PREFIX_LEN ];
913
1014typedef int32_t PREFIX_ValuedLenArray [42 ];
Original file line number Diff line number Diff line change 55
66#define PREFIX_LEN 42
77
8+ #define PREFIX_X (42 << 42)
9+
10+ #define PREFIX_Y (PREFIX_X + PREFIX_X)
11+
812typedef int32_t PREFIX_NamedLenArray [PREFIX_LEN ];
913
1014typedef int32_t PREFIX_ValuedLenArray [42 ];
Original file line number Diff line number Diff line change 55
66static const int32_t PREFIX_LEN = 42 ;
77
8+ static const int64_t PREFIX_X = (42 << 42 );
9+
10+ static const int64_t PREFIX_Y = (PREFIX_X + PREFIX_X);
11+
812using PREFIX_NamedLenArray = int32_t [PREFIX_LEN];
913
1014using PREFIX_ValuedLenArray = int32_t [42 ];
You can’t perform that action at this time.
0 commit comments