Author: ahatanak
Date: Sat Apr 2 22:36:22 2016
New Revision: 265257
URL: http://llvm.org/viewvc/llvm-project?rev=265257&view=rev
Log:
Fix test case committed in r265197.
The test was failing on some release build because the basic block names
I was expecting weren't printed.
Modified:
cfe/t
doug.gregor added a subscriber: doug.gregor.
doug.gregor accepted this revision.
doug.gregor added a reviewer: doug.gregor.
doug.gregor added a comment.
This revision is now accepted and ready to land.
Yes, this is acceptable. Please go ahead and commit.
http://reviews.llvm.org/D18709
___
Author: vedantk
Date: Sat Apr 2 19:54:46 2016
New Revision: 265252
URL: http://llvm.org/viewvc/llvm-project?rev=265252&view=rev
Log:
[c-index-test] Fix leak in print_completion_result, NFC
Modified:
cfe/trunk/tools/c-index-test/c-index-test.c
Modified: cfe/trunk/tools/c-index-test/c-index-t
Author: nico
Date: Sat Apr 2 14:10:07 2016
New Revision: 265238
URL: http://llvm.org/viewvc/llvm-project?rev=265238&view=rev
Log:
clang-cl: Don't skip i_group flags other than -include when building pchs.
Before this change, e.g. -isystem flags in front of the /FI corresponding to the
pch file w
Eugene.Zelenko added a comment.
I think will be good idea to convert !strcmp(...) to strcmp(...) == 0.
http://reviews.llvm.org/D18703
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
dim abandoned this revision.
dim added a comment.
Yes, this was indeed the wrong include order. During the latter stages of
FreeBSD's buildworld, the compiler is invoked with `-nostdinc++`, but
`/usr/include` was put before the libc++ include directory,
`/usr/include/c++/v1`. So as @rsmith re