- Mar 30, 2009
-
-
Ted Kremenek authored
loc::SymbolVal/nonloc::SymbolVal probing. llvm-svn: 68049
-
Ted Kremenek authored
also makes this code more correct as it transparently handles SVals that wrapped TypedViewRegions(SymbolicRegions). llvm-svn: 68048
-
Daniel Dunbar authored
- <rdar://problem/6726511> [driver] clang does not have -msoft-float hooked up. llvm-svn: 68044
-
Fariborz Jahanian authored
Patch by David Chisnall. llvm-svn: 68043
-
Daniel Dunbar authored
llvm-svn: 68042
-
Ted Kremenek authored
will be called for every expression in a basic block. llvm-svn: 68041
-
Zhongxing Xu authored
Layer the type information with a TypedViewRegion on top of the SymbolicRegion. llvm-svn: 68028
-
Daniel Dunbar authored
- Not particularly elegant, but my hand is forced by gcc. Also, tweak -ccc-print-bindings output. llvm-svn: 68027
-
Zhongxing Xu authored
llvm-svn: 68024
-
Daniel Dunbar authored
- Rip out various bits of logic from clang-cc's dependency file gen, force driver to provide instead. - -MD output now goes to proper location <rdar://problem/6723948> clang -MD puts dep file in /tmp with wrong name - -M and -MM still don't work correctly. llvm-svn: 68022
-
Sebastian Redl authored
llvm-svn: 68021
-
Daniel Dunbar authored
we can properly claim arguments, even if they have been translated by the tool chain. llvm-svn: 68020
-
Daniel Dunbar authored
tools, and enable them. llvm-svn: 68019
-
Daniel Dunbar authored
warnings. llvm-svn: 68018
-
- Mar 29, 2009
-
-
Eli Friedman authored
by moving the general case to the generic x86-32 target. llvm-svn: 68015
-
Daniel Dunbar authored
unused, and lacking a test case). - ccc is now on death row, pending some more testing and bug fixes. llvm-svn: 68012
-
Chris Lattner authored
llvm-svn: 68011
-
Chris Lattner authored
into ParseForStatement. Merge two tests into one. llvm-svn: 68010
-
Chris Lattner authored
into ParseSimpleDeclaration, and improve a diagnostic. llvm-svn: 68009
-
Daniel Dunbar authored
(currently unused). llvm-svn: 68003
-
Chris Lattner authored
productions (except the already broken ObjC cases like @class X,Y;) in the parser that can produce more than one Decl return a DeclGroup instead of a Decl, etc. This allows elimination of the Decl::NextDeclarator field, and exposes various clients that should look at all decls in a group, but which were only looking at one (such as the dumper, printer, etc). These have been fixed. Still TODO: 1) there are some FIXME's in the code about potentially using DeclGroup for better location info. 2) ParseObjCAtDirectives should return a DeclGroup due to @class etc. 3) I'm not sure what is going on with StmtIterator.cpp, or if it can be radically simplified now. 4) I put a truly horrible hack in ParseTemplate.cpp. I plan to bring up #3/4 on the mailing list, but don't plan to tackle #1/2 in the short term. llvm-svn: 68002
-
Chris Lattner authored
llvm-svn: 68000
-
Sebastian Redl authored
Reintroduce r67870 (rval ref overloading), since I can't reproduce any test failures on i386 or x86_64. If this fails for someone, please contact me. llvm-svn: 67999
-
Chris Lattner authored
llvm-svn: 67997
-
Chris Lattner authored
simplifies some code. llvm-svn: 67993
-
Chris Lattner authored
llvm-svn: 67991
-
Chris Lattner authored
llvm::PointerUnion class. llvm-svn: 67988
-
Chris Lattner authored
llvm-svn: 67981
-
Chris Lattner authored
llvm-svn: 67980
-
Chris Lattner authored
llvm-svn: 67978
-
Eli Friedman authored
really intending to take ownership of this; I wrote this mostly because I was curious about how the ARM ABI works. It should be a decent start, though. llvm-svn: 67969
-
Chris Lattner authored
to work around this. llvm-svn: 67968
-
Anders Carlsson authored
More improvements to namespace aliases. We now support everything except aliases in using directives. llvm-svn: 67966
-
Anders Carlsson authored
llvm-svn: 67964
-
Anders Carlsson authored
Let getIdentifierNamespaceForKind know about aliases and have it treat them just like namespace decls. llvm-svn: 67963
-
- Mar 28, 2009
-
-
Anders Carlsson authored
llvm-svn: 67962
-
Anders Carlsson authored
llvm-svn: 67961
-
Ted Kremenek authored
<rdar://problem/6732151>. llvm-svn: 67954
-
Chris Lattner authored
pointer. Its purpose in life is to be a glorified void*, but which does not implicitly convert to void* or other OpaquePtr's with a different UID. Introduce Action::DeclPtrTy which is a typedef for OpaquePtr<0>. Change the entire parser/sema interface to use DeclPtrTy instead of DeclTy*. This makes the C++ compiler enforce that these aren't convertible to other opaque types. We should also convert ExprTy, StmtTy, TypeTy, AttrTy, BaseTy, etc, but I don't plan to do that in the short term. The one outstanding known problem with this patch is that we lose the bitmangling optimization where ActionResult<DeclPtrTy> doesn't know how to bitmangle the success bit into the low bit of DeclPtrTy. I will rectify this with a subsequent patch. llvm-svn: 67952
-
Ted Kremenek authored
llvm-svn: 67948
-