Quuxplusone / LLVMBugzillaTest

0 stars 0 forks source link

Incorrect formatting of rvalue references. #15051

Closed Quuxplusone closed 11 years ago

Quuxplusone commented 11 years ago
Bugzilla Link PR15051
Status RESOLVED FIXED
Importance P enhancement
Reported by Michael Spencer (bigcheesegs@gmail.com)
Reported on 2013-01-23 04:26:08 -0800
Last modified on 2013-03-12 11:30:28 -0700
Version trunk
Hardware All All
CC alexfh@google.com, djasper@google.com, klimek@google.com
Fixed by commit(s)
Attachments
Blocks
Blocked by
See also
Input:
void adena(T &&t);

Output:
void adena(T && t);

Expected:
void adena(T &&t);

I think this shows up in other contexts as well.
Quuxplusone commented 11 years ago
Fixed for all cases except template arguments in r176874.
http://llvm-reviews.chandlerc.com/D531