- Jan 28, 2013
-
-
Michael Gottesman authored
Since ObjCARC has been refactored into its own library with its own declaration header, we need to include the declaration header alongside Scalar.h in BackendUtil. llvm-svn: 173648
-
Richard Smith authored
attribute). llvm-svn: 173645
-
Richard Smith authored
permitted in standard C++, despite being silently accepted by many (all?) major C++ implementations. llvm-svn: 173643
-
- Jan 27, 2013
-
-
Dmitri Gribenko authored
llvm-svn: 173633
-
Dmitri Gribenko authored
Patch by Will Wilson. llvm-svn: 173630
-
Dmitri Gribenko authored
does not have one of its own. // rdar://13067629 Original patch (r173586 and r173587) by Fariborz Jahanian, modified by me. llvm-svn: 173626
-
Jordan Rose authored
Unfortunately, we can't accept the UCN as an extension because we're required to treat it as two tokens for preprocessing purposes. llvm-svn: 173622
-
NAKAMURA Takumi authored
For example, cur) unittests/ADT/Release/ADTTests new) unittests/ADT/ADTTests RUNTIME_BUILD_MODE can be substituted to CMAKE_CFG_INTDIR. With Make and Ninja, the tree is not built with multiple configurations. Then, including the build type in target directory doesn't make sense. See also "How can I build multiple modes without switching?" http://www.cmake.org/Wiki/CMake_FAQ CMAKE_CFG_INTDIR is set to "." With multiple-configuration-aware build system, like Visual Studio, each unittest is built on appropriate directory, for example, unittests/ADT/Release/ADTTests.exe CMAKE_CFG_INTDIR is set to build system's variable, like "$(Configuration)" or "$(OutDir)". Thus, "--param build_config" is also deprecated. llvm-svn: 173616
-
NAKAMURA Takumi authored
It caused unexpected warnings with @tparam. llvm-svn: 173614
-
Bill Wendling authored
In the future, AttributeWithIndex won't be used anymore. Besides, it exposes the internals of the AttributeSet to outside users, which isn't goodness. llvm-svn: 173605
-
Michael Han authored
llvm-svn: 173597
-
- Jan 26, 2013
-
-
Dmitri Gribenko authored
We are not exposing the pool or string buffers to libclang users, so no need to maintain a procedural interface. llvm-svn: 173595
-
David Blaikie authored
One of the gotchas (see changes to CodeGenFunction) was due to the fix in r139416 (for PR10829). This only worked previously because the top level lexical block would set the location to the end of the function, the debug location would be updated (as per r139416), the location would be set to the end of the function again (but that would no-op, since it was the same as the previous location), then the return instruction would be emitted using the debug location. Once the top level lexical block was no longer emitted, the end-of-function location change was causing the debug loc to be updated, regressing that bug. llvm-svn: 173593
-
Dmitri Gribenko authored
llvm-svn: 173590
-
Dmitri Gribenko authored
llvm-svn: 173589
-
Dmitri Gribenko authored
There is no reason to store pointers as 'void*' in CXTranslationUnitImpl, since it does not affect libclang ABI. llvm-svn: 173588
-
Fariborz Jahanian authored
llvm-svn: 173587
-
Fariborz Jahanian authored
latter does not have one of its own. // rdar://13067629 llvm-svn: 173586
-
Dmitri Gribenko authored
into a getter cxtu::getASTUnit(TU) llvm-svn: 173585
-
Dmitri Gribenko authored
llvm-svn: 173584
-
Dmitri Gribenko authored
llvm-svn: 173583
-
Dmitri Gribenko authored
llvm-svn: 173582
-
Enea Zaffanella authored
llvm-svn: 173581
-
Dmitri Gribenko authored
llvm-svn: 173578
-
Dmitri Gribenko authored
Also change EnqueueVisitor to use ConstStmtVisitor as a consequence. llvm-svn: 173577
-
Tim Northover authored
Since ARM has diverging ABIs on this detail, it's probably worth testing both it and a "normal" Itanium system. llvm-svn: 173576
-
Dmitri Gribenko authored
llvm-svn: 173575
-
Dmitri Gribenko authored
llvm-svn: 173574
-
NAKAMURA Takumi authored
llvm-svn: 173561
-
Argyrios Kyrtzidis authored
for a CXFile containing device/inode/modification time. Intended to be useful as a key associated with a unique file across an indexing session. rdar://13091837 llvm-svn: 173559
-
NAKAMURA Takumi authored
FIXME: If FileCheck had expressions something predefined well-known... llvm-svn: 173558
-
Jordan Rose authored
When the analyzer sees an initializer, it checks if the initializer contains a CXXConstructExpr. If so, it trusts that the CXXConstructExpr does the necessary work to initialize the object, and performs no further initialization. This patch looks through any implicit wrapping expressions like ExprWithCleanups to find the CXXConstructExpr inside. Fixes PR15070. llvm-svn: 173557
-
Richard Trieu authored
on a type. Currently, it gives a generic "expected unqualified-id" error. The new error message is "cannot use (dot|arrow) operator on a type". llvm-svn: 173556
-
Richard Smith authored
object argument type for a member call. llvm-svn: 173554
-
Richard Trieu authored
llvm-svn: 173553
-
Nick Lewycky authored
llvm-svn: 173550
-
Fariborz Jahanian authored
llvm-svn: 173549
-
Richard Trieu authored
-f(no-)color-diagnostics. In addition, dumpColor() function calls are added to force color printing. No structural changes to -ast-dump. llvm-svn: 173548
-
Jordan Rose authored
The expression 'a->b.c()' contains a call to the 'c' method of 'a->b'. We emit an error if 'a' is NULL, but previously didn't actually track the null value back through the 'a->b' expression, which caused us to miss important false-positive-suppression cases, including <rdar://problem/12676053>. llvm-svn: 173547
-
Jordan Rose authored
This allows it to be used in places where the interesting statement doesn't match up with the current node. No functionality change. llvm-svn: 173546
-