llvm / llvm-project

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.
http://llvm.org
Other
28.49k stars 11.78k forks source link

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

Closed Bigcheese closed 11 years ago

Bigcheese commented 11 years ago
Bugzilla Link 15052
Resolution FIXED
Resolved on Jan 23, 2013 05:26
Version trunk
OS All

Extended Description

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

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

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

Bigcheese commented 11 years ago

Already fixed.