- Oct 08, 2012
-
-
Daniel Jasper authored
Review: http://llvm-reviews.chandlerc.com/D30 llvm-svn: 165392
-
David Blaikie authored
llvm-svn: 165384
-
David Blaikie authored
llvm-svn: 165383
-
- Oct 07, 2012
-
-
Benjamin Kramer authored
llvm-svn: 165375
-
Benjamin Kramer authored
Patch by Leo Liu, test case by me. llvm-svn: 165374
-
Rafael Espindola authored
llvm-svn: 165370
-
Rafael Espindola authored
The darwin change should be a nop since Triple::getArchTypeForDarwinArchName doesn't know about amd64. If things like amd64-mingw32 are to be rejected, we should print a error earlier on instead of silently using the wrong abi. Remove old comment that looks out of place, this is "in clang". llvm-svn: 165368
-
- Oct 06, 2012
-
-
Dmitri Gribenko authored
will do the right thing for new[] allocated memory. Thanks David! llvm-svn: 165365
-
Dmitri Gribenko authored
characters. llvm-svn: 165364
-
Dmitri Gribenko authored
llvm-svn: 165363
-
Benjamin Kramer authored
GCC has always supported this on PowerPC and 4.8 supports it on all platforms, so it's a good idea to expose it in clang too. LLVM supports this on all targets. llvm-svn: 165362
-
Ted Kremenek authored
Place warn_impcast_different_enum_types in a new warning group, -Wenum-conversion, that is a subgroup of -Wconversion. llvm-svn: 165361
-
Ted Kremenek authored
llvm-svn: 165360
-
Ted Kremenek authored
llvm-svn: 165359
-
Jordan Rose authored
This should fix the bots. llvm-svn: 165358
-
Jordan Rose authored
The Clang ASTs are a DAG, not a pure tree. However, ParentMap has to choose a single parent for each object. In the main (only?) cases in which the AST forms a DAG, it protects from multiple traversal by using OpaqueValueExprs. Previously, ParentMap would just unconditionally look through all OpaqueValueExprs when building its map. In order to make this behavior better for the analyzer's diagnostics, ParentMap was changed to not set a statement's parent if there already was one in the map. However, ParentMap is supposed to allow updating existing mappings by calling addStmt once again. This change makes the "transparency" of OpaqueValueExprs explicit, and disables it when it is not desired, rather than checking the current contents of the map. This new code seems like a big change, but it should actually have essentially the same performance as before. Only OpaqueValueExprs and their users (PseudoObjectExpr and BinaryConditionalOperator) will have any different behavior. There should be no user-visible functionality change, though a test has been added for the current behavior of BinaryConditionalOperator source locations and accompanying Xcode arrows (which are not so great...). llvm-svn: 165355
-
Jordan Rose authored
Some implicit statements, such as the implicit 'self' inserted for "free" Objective-C ivar access, have invalid source locations. If one of these statements is the location where an issue is reported, we'll now look at the enclosing statements for a valid source location. <rdar://problem/12446776> llvm-svn: 165354
-
Argyrios Kyrtzidis authored
llvm-svn: 165353
-
Argyrios Kyrtzidis authored
to not mess up with module building. It was not worth trying to combine indexing without preprocessing record and building modules with one because: -just importing a module/PCH that was built with a pp record, enables it anyway -the performance gain of indexing without the preprocessing record is insignificant. llvm-svn: 165352
-
Alex Rosenberg authored
llvm-svn: 165347
-
Alex Rosenberg authored
llvm-svn: 165345
-
Alex Rosenberg authored
llvm-svn: 165343
-
Alex Rosenberg authored
llvm-svn: 165342
-
DeLesley Hutchins authored
llvm-svn: 165339
-
Ted Kremenek authored
llvm-svn: 165338
-
- Oct 05, 2012
-
-
Aaron Ballman authored
llvm-svn: 165329
-
Michael Liao authored
llvm-svn: 165325
-
Abramo Bagnara authored
llvm-svn: 165298
-
Eli Friedman authored
PR14029, clang part. llvm-svn: 165289
-
Richard Smith authored
Workaround for libstdc++4.6 <atomic> bug: make comment more explicit about what's going on, per Sean Silva's suggestion. llvm-svn: 165286
-
David Blaikie authored
This appears to be consistent with GCC's implementation of the same warning under -Wparentheses. Suppressing a << b + c for cases where 'a' is a user defined type for compatibility with C++ stream IO. Otherwise suggest parentheses around the addition or subtraction subexpression. (this came up when MSVC was complaining (incorrectly, so far as I can tell) about a perceived violation of this within the LLVM codebase, PR14001) llvm-svn: 165283
-
Argyrios Kyrtzidis authored
importedASTFile indexing callback. llvm-svn: 165281
-
Argyrios Kyrtzidis authored
clang_Cursor_getModule clang_Module_getParent clang_Module_getName clang_Module_getFullName clang_Module_getNumTopLevelHeaders clang_Module_getTopLevelHeader llvm-svn: 165280
-
Argyrios Kyrtzidis authored
that are associated with a (sub)module. llvm-svn: 165279
-
Argyrios Kyrtzidis authored
loaded entities vector, otherwise its meaning will change when a module is imported and the vector size changes. llvm-svn: 165278
-
Argyrios Kyrtzidis authored
import declaration. llvm-svn: 165277
-
Chad Rosier authored
llvm-svn: 165276
-
Richard Smith authored
- outside C++, return undef (behavior is not undefined unless the value is used) - in C++, with -fcatch-undefined-behavior, perform an appropriate trap - in C++, produce an 'unreachable' (behavior is undefined immediately) llvm-svn: 165273
-
Richard Smith authored
Clang can now cope with its eccentricities in C++11 mode. llvm-svn: 165265
-
Richard Smith authored
a non-inline namespace, then reopens it as inline to try to add its symbols to the surrounding namespace. In this one special case, permit the namespace to be reopened as inline, and patch up the name lookup tables to match. llvm-svn: 165263
-