aboutsummaryrefslogtreecommitdiff
path: root/clang.xcodeproj
AgeCommit message (Expand)Author
2007-08-31Fix a bug/missing-feature Ted noticed: the 'unused' warning should notChris Lattner
2007-08-31Added "PrinterHelper" interface (include/AST/PrinterHelper) that canTed Kremenek
2007-08-30Teach the stmtdumper to dump location/range info when a SourceMgr is available.Chris Lattner
2007-08-29Implement GCC-compatible layout and typing of enum constants and enum decl. Chris Lattner
2007-08-26Fix bogus warnings (noticed by Chris) with array-constraints.c.Steve Naroff
2007-08-26add a new ImaginaryLiteral AST node that is used toChris Lattner
2007-08-25refactor enough of the top-level parsing logic to parse andChris Lattner
2007-08-24Teach emit-llvm for scalars to properly handle compound assignment Chris Lattner
2007-08-24Added ExprCXX.cppTed Kremenek
2007-08-24completely refactor codegen of scalar expressions out into its own CGExprScal...Chris Lattner
2007-08-24rename two files.Chris Lattner
2007-08-23detect and diagnose empty case ranges:Chris Lattner
2007-08-23Parse ObjC @protocol expressions.Anders Carlsson
2007-08-21add cfg.h/cfg.cpp to the xcode project at Ted's request.Chris Lattner
2007-08-21minor nicities.Chris Lattner
2007-08-21Implement parsing and code generation of Objective-C string literals.Anders Carlsson
2007-08-21Split complex arithmetic codegen out from aggregate codegen.Chris Lattner
2007-08-21Switch StmtVisitor from using dynamic to static dispatch. This makes it Chris Lattner
2007-08-21Implement code generation for constant CFStrings.Anders Carlsson
2007-08-10initial support for checking format strings, patch by Ted Kremenek:Chris Lattner
2007-08-10New file, just a placeholder for now.Chris Lattner
2007-08-08add a new AST dumper interface (E->dump()). This dumps outChris Lattner
2007-08-04Implement codegen for __builtin_choose_expr. For example:Chris Lattner
2007-08-03Add a test case to validate code gen for typeof/builtin_types_compatible.Steve Naroff
2007-07-31add internals manual to projectChris Lattner
2007-07-31add two missing files to the xcode project.Chris Lattner
2007-07-31make isPointerType() a pure predicate, rename theChris Lattner
2007-07-31Add parsing and AST support for GNU "typeof".Steve Naroff
2007-07-24Fix Sema::ParseCallExpr()...it wasn't doing the default array/function promot...Steve Naroff
2007-07-24Add a cache to SourceManager to accellerate line # lookup. This is aChris Lattner
2007-07-22Fix a really subtle bug in the macro expander caching code, whereChris Lattner
2007-07-21Minor simplification to Expr::isLvalue().Steve Naroff
2007-07-20Update project for LexerToken.h -> Token.hChris Lattner
2007-07-18initial layout support for structures and unions. This isn't actuallyChris Lattner
2007-07-16Change DefaultFunctionArrayConversions and UsualUnaryConversions to return vo...Steve Naroff
2007-07-16Make octal constant lexing use AdvanceToTokenCharacter to give moreChris Lattner
2007-07-13"Someone typed "PtrToInt" where they meant "IntToPtr".Chris Lattner
2007-07-12Two changes...Steve Naroff
2007-07-11Stage two of getting CFE top correct.Reid Spencer