Re: r332314 - [AST] Fix printing tag decl groups in decl contexts

2018-05-16 Thread Hans Wennborg via cfe-commits
On Tue, May 15, 2018 at 7:30 PM, Joel E. Denny wrote: > Hi Hans, > > On Tue, May 15, 2018 at 6:23 AM, Hans Wennborg wrote: >> >> This broke the ast-print-record-decl.c test on Windows, see for >> example >>

Re: r332314 - [AST] Fix printing tag decl groups in decl contexts

2018-05-15 Thread Joel E. Denny via cfe-commits
Hi Hans, On Tue, May 15, 2018 at 6:23 AM, Hans Wennborg wrote: > This broke the ast-print-record-decl.c test on Windows, see for > example http://lab.llvm.org:8011/builders/clang-with-thin-lto- > windows/builds/9066 > > One way to reproduce the failure on Linux is to pass a

Re: r332314 - [AST] Fix printing tag decl groups in decl contexts

2018-05-15 Thread Joel E. Denny via cfe-commits
Hi Hans, Thanks. Sorry for the trouble. I'll look into it. Joel On Tue, May 15, 2018 at 6:23 AM, Hans Wennborg wrote: > This broke the ast-print-record-decl.c test on Windows, see for > example http://lab.llvm.org:8011/builders/clang-with-thin-lto- > windows/builds/9066 >

Re: r332314 - [AST] Fix printing tag decl groups in decl contexts

2018-05-15 Thread Hans Wennborg via cfe-commits
This broke the ast-print-record-decl.c test on Windows, see for example http://lab.llvm.org:8011/builders/clang-with-thin-lto-windows/builds/9066 One way to reproduce the failure on Linux is to pass a Windows triple to this ast-print command: --- a/test/Misc/ast-print-record-decl.c +++

r332314 - [AST] Fix printing tag decl groups in decl contexts

2018-05-14 Thread Joel E. Denny via cfe-commits
Author: jdenny Date: Mon May 14 17:44:14 2018 New Revision: 332314 URL: http://llvm.org/viewvc/llvm-project?rev=332314=rev Log: [AST] Fix printing tag decl groups in decl contexts For example, given: struct T1 { struct T2 *p0; }; -ast-print produced: struct T1 { struct T2;