- Feb 09, 2012
-
-
Benjamin Kramer authored
llvm-svn: 150172
-
Douglas Gregor authored
[expr.prim.lambda]p4, including the current suggested resolution of core isue 975, which allows multiple return statements so long as the types match. ExtWarn when user code is actually making use of this extension. llvm-svn: 150168
-
Douglas Gregor authored
function call operator (to the lambda class). This allows us to IRgen calls to simple (non-capturing) lambdas, e.g., [](int i, int j) -> int { return i + j; }(1, 2) Eli will be providing test cases as he brings up more IRgen. llvm-svn: 150166
-
Douglas Gregor authored
and rapidly becoming untrue. llvm-svn: 150165
-
Douglas Gregor authored
[expr.prim.lambda]. llvm-svn: 150164
-
Douglas Gregor authored
unevaluated operands. Be certain that we're marking everything referenced within a capture initializer as odr-used. llvm-svn: 150163
-
Argyrios Kyrtzidis authored
llvm-svn: 150162
-
Argyrios Kyrtzidis authored
We were passing a decl to the consumer after all pending deserializations were finished but this was not enough; due to processing by the consumer we may end up into yet another deserialization process but the way FinishedDeserializing() was setup we would not ensure that everything was fully deserialized before returning to the consumer. Separate ASTReader::FinishedDeserializing() into two semantic actions. The first is ensuring that a deserialization process ends up will fully deserialized decls/types even if the process is started by the consumer. The second is pushing "interesting" decls to the consumer; we make sure that we don't re-enter this section recursively be checking a variable. llvm-svn: 150160
-
Eric Christopher authored
difference in the qual type. This is a workaround for the fact that the type isn't artificial but the this decl is, however, we don't have any way of representing it in the current metadata. For now, however, just don't cache the full type. Fixes rdar://10831526 and probably a couple of others. llvm-svn: 150159
-
Anna Zaks authored
llvm-svn: 150158
-
Richard Smith authored
empty union. This still rejects anonymous member structs or unions which only contain such empty class types, pending standard wording defining exactly what an empty class type is. llvm-svn: 150157
-
Anna Zaks authored
Very simple so far - we just highlight every allocation and release site. llvm-svn: 150156
-
Anna Zaks authored
llvm-svn: 150155
-
Argyrios Kyrtzidis authored
calls to Decl::getASTContext() by Decl's methods will find the TranslationUnitDecl without crashing due to a parent declaration context still deserializing. llvm-svn: 150153
-
David Blaikie authored
This was from way-back-when (r82583) when Clang's C++ support wasn't prime-time yet. Production quality C++ was tested experimentally from r100119 and turned on by default in r141063. Patch by Justin Bogner. llvm-svn: 150148
-
Eli Friedman authored
llvm-svn: 150147
-
Eli Friedman authored
llvm-svn: 150146
-
Richard Smith authored
lvalue-to-rvalue conversions in constant expressions. llvm-svn: 150145
-
Aaron Ballman authored
Patch by Remi Gacogne llvm-svn: 150144
-
Eli Friedman authored
llvm-svn: 150141
-
Eli Friedman authored
llvm-svn: 150140
-
Eli Friedman authored
llvm-svn: 150139
-
Douglas Gregor authored
llvm-svn: 150138
-
Argyrios Kyrtzidis authored
directly; they internally call Decl::getASTContext() which may crash if a declaration context parent is still deserializing. llvm-svn: 150137
-
Douglas Gregor authored
Don't complain about the lack of a constructor for a lambda expression. They are constructed in different ways llvm-svn: 150136
-
Douglas Gregor authored
capture, make sure we actually add the field. llvm-svn: 150135
-
Douglas Gregor authored
function; it's going to get longer soon. No functionality change. llvm-svn: 150132
-
Douglas Gregor authored
llvm-svn: 150130
-
Douglas Gregor authored
llvm-svn: 150129
-
Aaron Ballman authored
Adding support for warning when a non-C compatible user-defined type is returned from an extern "C" function. Fixes bug 6143 llvm-svn: 150128
-
Douglas Gregor authored
llvm-svn: 150126
-
Douglas Gregor authored
- Complete the lambda class when we finish the lambda expression (previously, it was left in the "being completed" state) - Actually return the LambdaExpr object and bind to the resulting temporary when needed. - Detect when cleanups are needed while capturing a variable into a lambda (e.g., due to default arguments in the copy constructor), and make sure those cleanups apply for the whole of the lambda expression. llvm-svn: 150123
-
Anna Zaks authored
which allows values to escape through unknown calls. Assumes all calls but the malloc family are unknown. Also, catch a use-after-free when a pointer is passed to a function after a call to free (previously, you had to explicitly dereference the pointer value). llvm-svn: 150112
-
Anna Zaks authored
optimistic. TODO: actually implement the pessimistic version of the checker. Ex: it needs to assume that any function that takes a pointer might free it. The optimistic version relies on annotations to tell us which functions can free the pointer. llvm-svn: 150111
-
- Feb 08, 2012
-
-
Ted Kremenek authored
llvm-svn: 150110
-
Fariborz Jahanian authored
protocol definitions. llvm-svn: 150106
-
Douglas Gregor authored
llvm-svn: 150090
-
Douglas Gregor authored
file. No functionality change. llvm-svn: 150089
-
Douglas Gregor authored
only add 'const' for variables captured by copy in potentially evaluated expressions of non-mutable lambdas. (The "by copy" part was missing). llvm-svn: 150088
-
Douglas Gregor authored
body of the lambda to the function call operator. llvm-svn: 150087
-