- Feb 09, 2012
-
-
Lang Hames authored
llvm-svn: 150150
-
Lang Hames authored
llvm-svn: 150149
-
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
-
Sean Callanan authored
llvm-svn: 150143
-
Sean Callanan authored
change (besides logging) is that now string literals in the IR are ConstantDataArrays instead of ConstantArrays. llvm-svn: 150142
-
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
-
Sean Callanan authored
llvm-svn: 150134
-
Johnny Chen authored
llvm-svn: 150133
-
Douglas Gregor authored
function; it's going to get longer soon. No functionality change. llvm-svn: 150132
-
Jim Ingham authored
llvm-svn: 150131
-
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
-
Johnny Chen authored
llvm-svn: 150127
-
Douglas Gregor authored
llvm-svn: 150126
-
Sean Callanan authored
causing testsuite crashes. llvm-svn: 150125
-
Johnny Chen authored
llvm-svn: 150124
-
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
-
Andrew Trick authored
Split CodeGen into stages. Distinguish between optimization and correctness. llvm-svn: 150122
-
Andrew Trick authored
llvm-svn: 150121
-
David Blaikie authored
If someone would prefer a clear name for the 'success' error_value we could come up with one - potentially just a 'named constructor' style 'error_value::success()' to make this expression more self-documenting. If I see this come up in other cases I'll certainly consider it. One step along the way to resolving PR11944. llvm-svn: 150120
-
Johnny Chen authored
Add a case to test that 'stty -a' displays the same output before and after running the lldb command. llvm-svn: 150119
-
Jakob Stoklund Olesen authored
This does make a difference, at least when using RABasic. llvm-svn: 150118
-
Jakob Stoklund Olesen authored
Calls clobber the flags, but when using register masks there is no EFLAGS<imp-def> operand. llvm-svn: 150117
-
Jakob Stoklund Olesen authored
I think this was already the intention, but DeadMachineInstructionElim was accidentally tracking the liveness of reserved registers. Now, instructions with reserved defs are never deleted. This prevents the call stack adjustment instructions from getting deleted when enabling register masks. llvm-svn: 150116
-
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
-
Johnny Chen authored
After discussions with Jim and Greg, modify the 'watchpoint set' command to become a mutiword command with subcommand 'expression' and 'variable'. The first subcommand is for supplying an expression to be evaluated into an address to watch for, while the second is for watching a variable. 'watchpoint set expression' is a raw command, which means that you need to use the "--" option terminator to end the '-w' or '-x' option processing and to start typing your expression. Also update several test cases to comply and add a couple of test cases into TestCompletion.py, in particular, test that 'watchpoint set ex' completes to 'watchpoint set expression ' and that 'watchpoint set var' completes to 'watchpoint set variable '. llvm-svn: 150109
-
Jakob Stoklund Olesen authored
For simplicity, treat calls with register masks as basic block boundaries. This means we can't copy propagate callee-saved registers across calls, but I don't think that is a big deal. llvm-svn: 150108
-