Author: steven_watanabe
Date: Fri Mar 18 16:35:59 2016
New Revision: 263836
URL: http://llvm.org/viewvc/llvm-project?rev=263836&view=rev
Log:
Fix printing of anonymous struct typedefs.
clang -cc1 -ast-print put the struct
definition in the wrong place, like this:
struct {} typedef S;
The reas
This revision was automatically updated to reflect the committed changes.
Closed by commit rL263836: Fix printing of anonymous struct typedefs. (authored
by steven_watanabe).
Changed prior to commit:
http://reviews.llvm.org/D17285?vs=48042&id=51072#toc
Repository:
rL LLVM
http://reviews.llv
steven_watanabe created this revision.
steven_watanabe added reviewers: rsmith, eli.friedman.
steven_watanabe added a subscriber: cfe-commits.
Currently clang -cc1 -ast-print puts the struct
definition in the wrong place, like this:
struct {} typedef S;
The reason that this happens is th
This revision was automatically updated to reflect the committed changes.
Closed by commit rL260795: Fix the ASTPrinter output for ascii char literals
>127. (authored by steven_watanabe).
Changed prior to commit:
http://reviews.llvm.org/D17206?vs=47822&id=47887#toc
Repository:
rL LLVM
http:
Author: steven_watanabe
Date: Fri Feb 12 20:31:28 2016
New Revision: 260795
URL: http://llvm.org/viewvc/llvm-project?rev=260795&view=rev
Log:
Fix the ASTPrinter output for ascii char literals >127.
Differential Revision: http://reviews.llvm.org/D17206
Modified:
cfe/trunk/lib/AST/StmtPrinter.
steven_watanabe created this revision.
steven_watanabe added a reviewer: rsmith.
steven_watanabe added a subscriber: cfe-commits.
Currently literals like '\xff' may be sign extended, resulting in output like
'\U', which is not valid.
http://reviews.llvm.org/D17206
Files:
lib/AST/StmtP