- Dec 23, 2009
-
-
Chris Lattner authored
of printf, patch by Christian Adaker! llvm-svn: 92019
-
Eli Friedman authored
accurate. llvm-svn: 92018
-
Douglas Gregor authored
llvm-svn: 92017
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92016
-
Douglas Gregor authored
member function thereof), perform the template instantiation each time the default argument is needed. This ensures that (1) We get different CXXTemporary objects for each instantiation, and (2) Any other instantiations or definitions triggered by the instantiation of the default argument expression are guaranteed to happen; previously, they might have been suppressed, e.g., because they happened in an unevaluated context. This fixes the majority of PR5810. However, it does not address the problem where we may have multiple uses of the same CXXTemporary within an expression when the temporary came from a non-instantiated default argument expression. llvm-svn: 92015
-
Kovarththanan Rajaratnam authored
llvm-svn: 92014
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92013
-
Nuno Lopes authored
llvm-svn: 92012
-
Nuno Lopes authored
llvm-svn: 92011
-
Douglas Gregor authored
llvm-svn: 92010
-
Douglas Gregor authored
llvm-svn: 92009
-
Douglas Gregor authored
llvm-svn: 92008
-
Steve Naroff authored
As the FIXME indicates, RewriteByRefVar() won't work for multiple declarators (in general). I've discussed this with Fariborz and he is aware of the limitation. llvm-svn: 92007
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92006
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92005
-
Douglas Gregor authored
llvm-svn: 92004
-
Douglas Gregor authored
llvm-svn: 92003
-
David Greene authored
Provide dbgs(), a circular-buffering debug output stream. By default it simply passes output to errs(). If -debug-buffer-size=N is set N > 0, dbgs() buffers its output until program termination and dumps the last N characters sent to it. This is handy when debugging very large inputs. llvm-svn: 92002
-
David Greene authored
Add circular_raw_ostream, which buffers its output in a circular queue and outputs it when explicitly flushed. The intent is to use it in situations such as debug output logging where a signal handler can take care of flushing the buffer at program termination. llvm-svn: 92001
-
Mikhail Glushenkov authored
llvm-svn: 92000
-
Mikhail Glushenkov authored
llvm-svn: 91999
-
Mikhail Glushenkov authored
llvm-svn: 91998
-
Mikhail Glushenkov authored
llvm-svn: 91997
-
Sanjiv Gupta authored
llvm-svn: 91996
-
Sanjiv Gupta authored
llvm-svn: 91995
-
Sanjiv Gupta authored
llvm-svn: 91994
-
Sanjiv Gupta authored
llvm-svn: 91993
-
Zhongxing Xu authored
llvm-svn: 91992
-
Zhongxing Xu authored
llvm-svn: 91991
-
Ted Kremenek authored
Add 'DeclStmt::DoDestroy()' which doesn't actually recurse over its child expressions (via StmtIterator), as those expressions are owned by the Decls and Types (which are destroyed elsewhere). This fixes a crasher reported in <rdar://problem/7487294>. llvm-svn: 91990
-
Zhongxing Xu authored
So we should use the current program point. llvm-svn: 91989
-
Dale Johannesen authored
Patch by Sylve`re Teissier (sorry, ASCII only). llvm-svn: 91988
-
Ted Kremenek authored
Add transfer function support in GRExprEngine for IfStmts with initialized condition variables. llvm-svn: 91987
-
Ted Kremenek authored
llvm-svn: 91986
-
Ted Kremenek authored
llvm-svn: 91985
-
Ted Kremenek authored
Fix CXXConstructExpr::getSourceRange() to not include the source ranges of CXXDefaultArgExprs when computing its range (since these expressions have no source range, and using them will make the encompassing range invalid). llvm-svn: 91984
-
Eric Christopher authored
only takes a boolean second argument now. Update tests accordingly. Currently the builtin still accepts the full range for compatibility. llvm-svn: 91983
-
Ted Kremenek authored
llvm-svn: 91982
-
Ted Kremenek authored
Fix PR 5857. When casting from a symbolic region to an integer back to a pointer value, we were not correctly layering the correct ElementRegion on the original SymbolicRegion. llvm-svn: 91981
-
Eric Christopher authored
lowering code and update testcases. llvm-svn: 91979
-