This patch fixes PR37175.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Tested it a bit more and found another problem. The code
DECOR1 uint32_t DECOR2 function1 (int arg1, int arg2) { return 1U; } DECOR1 unsigned DECOR2 function2 (int arg1, int arg2) { return 1U; }
would still be misformatted to:
DECOR1 uint32_t DECOR2 function1(int arg1, int arg2) { return 1U; } DECOR1 unsigned DECOR2 function2(int arg1, int arg2) { return 1U; }