- Dec 23, 2009
-
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92029
-
Fariborz Jahanian authored
llvm-svn: 92028
-
Fariborz Jahanian authored
llvm-svn: 92027
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92026
-
Chris Lattner authored
as a character literal, not a string literal. This might fix rdar://7486575 llvm-svn: 92025
-
David Greene authored
Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. llvm-svn: 92024
-
Douglas Gregor authored
DynamicLibrary::SearchForAddressOfSymbol refer to declarations in the global namespace. llvm-svn: 92023
-
Chris Lattner authored
llvm-svn: 92022
-
Douglas Gregor authored
llvm-svn: 92021
-
Douglas Gregor authored
DynamicLibrary::SearchForAddressOfSymbol and force them to have "C" linkage. Interestingly, GCC treats the block-scoped "extern" declarations we previously had as if they were extern "C" declarations (or, at least, were in the global namespace), so that GCC bug papered over this LLVM bug. Clang and EDG get the linkage correct; this new variant seems to work for both GCC and Clang. llvm-svn: 92020
-
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
-