https://bugs.llvm.org/show_bug.cgi?id=33827
Bug ID: 33827
Summary: _Generic associated list is misformatted
Product: clang
Version: trunk
Hardware: PC
OS: All
Status: NEW
Severity: enhancement
Priority: P
Component: Formatter
Assignee: unassignedclangb...@nondot.org
Reporter: compn...@compnerd.org
CC: djas...@google.com, kli...@google.com,
llvm-bugs@lists.llvm.org
```
#define __SSIZE_TYPE__
\
__typeof__(_Generic((__SIZE_TYPE__)0,
\
unsigned long long int: (long long int)0,
\
unsigned long int: (long int)0,
\
unsigned int: (int)0,
\
unsigned short: (short)0,
\
unsigned char: (signed char)0))
```
is formatted as
```
#define __SSIZE_TYPE__
\
__typeof__(_Generic((__SIZE_TYPE__)0, unsigned long long int
\
: (long long int)0, unsigned long int
\
: (long int)0, unsigned int
\
: (int)0, unsigned short
\
: (short)0, unsigned char
\
: (signed char)0))
```
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs