Quuxplusone / LLVMBugzillaTest

0 stars 0 forks source link

Incorrect formatting of complex unary * and & operator combinations. #15052

Closed Quuxplusone closed 11 years ago

Quuxplusone commented 11 years ago
Bugzilla Link PR15052
Status RESOLVED FIXED
Importance P enhancement
Reported by Michael Spencer (bigcheesegs@gmail.com)
Reported on 2013-01-23 04:35:10 -0800
Last modified on 2013-01-23 05:26:28 -0800
Version trunk
Hardware All All
CC djasper@google.com, klimek@google.com
Fixed by commit(s)
Attachments
Blocks
Blocked by
See also
Input:
pointer adena() { return &**hi; }

Output:
pointer adena() { return &* *hi; }

Expected:
pointer adena() { return &**hi; }
Quuxplusone commented 11 years ago

Already fixed.