- 52ae30c Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 16 years ago
- 9fddded Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension by Douglas Gregor · 16 years ago
- 0eab08e diags moved, so these casts are no longer needed. by Chris Lattner · 16 years ago
- a4e0498 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 16 years ago
- c9e012a Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 16 years ago
- 8246276 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 16 years ago
- 896f37b Suppress a warning by Douglas Gregor · 16 years ago
- 545f39e move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
- 1aa25a7 fix an absolutely inscrutible gcc 4.0 error: by Chris Lattner · 16 years ago
- aaa2096 Better documentation for our initialization checker by Douglas Gregor · 16 years ago
- 849afc3 Move InitListChecker out of Sema.h by Douglas Gregor · 16 years ago
- 36859eb Eliminate infinite looping in a wacky case with designated initializers. Simplifies (somewhat) the actually checking of the initializer expression following the designators by Douglas Gregor · 16 years ago
- c349ee2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 16 years ago
- 756283b Remove Expr::hasSideEffects. It doesn't work anyway by Douglas Gregor · 16 years ago
- 36dd0c5 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
- f603b47 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
- 7b36a1b Name change (isTypeName->getTypeName). by Steve Naroff · 16 years ago
- f41a58c Implement pointer to member handling in static_cast. by Sebastian Redl · 16 years ago
- b31f294 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 16 years ago
- 9844633 Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
- c8b0d08 Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
- 88eebed Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. by Ted Kremenek · 16 years ago
- 207b9ec Finish making AST BumpPtrAllocation runtime configurable (based on -disable-free). by Steve Naroff · 16 years ago
- 04b3f35 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 16 years ago
- dd3a4fe If an input constraint refers to an output constraint, it should have the same constraint info as the output constraint. Fixes PR3417 by Anders Carlsson · 16 years ago
- 52a425b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
- 10a18fc Some micro-optimizations for DISABLE_SMART_POINTERS: by Douglas Gregor · 16 years ago
- c374f8b rename getSpelledCharacterAt to getSpellingOfSingleCharacterNumericConstant, by Chris Lattner · 16 years ago
- 08cdb99 Add support for member pointers to const_cast. by Sebastian Redl · 16 years ago
- 8ebd8fb Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 16 years ago
- c67f86a PR3269: create an empty InitListExpr as a child for the by Eli Friedman · 16 years ago
- ba38756 Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
- 4a480d6 Fix for PR2100: merge types for variables. by Eli Friedman · 16 years ago
- bc941e1 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 16 years ago
- 364a42d Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 16 years ago
- 7555503 Add support for declaring pointers to members. by Sebastian Redl · 16 years ago
- 8d9f796 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 16 years ago
- a78909b fix a fixme, don't leak the expr on error. by Chris Lattner · 16 years ago
- 159fe08 minor formatting changes, no functionality change. by Chris Lattner · 16 years ago
- 37704be Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 16 years ago
- ea0528d More APSInt appeasement by Douglas Gregor · 16 years ago
- 4ac887b Make sure that all NamedDecls have an identifier namespace. by Douglas Gregor · 16 years ago
- e498e37 Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 16 years ago
- f93eda1 Allow subtraction of function pointer types in C, as a GNU extension. Fixes rdar://problem/6520707 by Douglas Gregor · 16 years ago
- 6972270 Make sure all of the isUnsigned flags line up when comparing initializer values, to really really fix PR clang/3377 by Douglas Gregor · 16 years ago
- 5a203a6 Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 16 years ago
- 65075ec Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 16 years ago
- b319324 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 16 years ago
- 710f6d4 Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
- 6d89a8a inline Sema::getLangOptions, rdar://6515190. This speeds up by Chris Lattner · 16 years ago
- edd94e9 EXTWARNify the warning about unnamed typedefs of enums by Douglas Gregor · 16 years ago
- c5a6bdc Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
- 2795965 Fix Sema::Owned(ExprResult) to not use a ternary operator. Necessary to work around a Visual Studio compiler bug. by Steve Naroff · 16 years ago
- de93d33 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 16 years ago
- 310dea3 Don't look up decls with no name (such as parameters and unnamed tagged types), by Chris Lattner · 16 years ago
- 774e415 Convert expressions over to Sebastian's spiffy ASTContext::new() operator. by Steve Naroff · 16 years ago
- 7532493 Provide a placement new taking an ASTContext argument. by Sebastian Redl · 16 years ago
- 5c6139b Fix a crash Anders' was seeing due to free'ing an invalid pointer by Chris Lattner · 16 years ago
- 8b9a98d Convert more exprs to use ASTContext's Allocator. by Steve Naroff · 16 years ago
- e7d9270 Improvements to Sema of asm statements. Fixes <rdar://problem/6156893> by Anders Carlsson · 16 years ago
- e5f128a Allocate expresssions through ASTContext (still more work to do). by Steve Naroff · 16 years ago
- defaf41 Optimize Declarator to avoid malloc/free traffic for the argument list of a by Chris Lattner · 16 years ago
- 9ac66d2 Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and document both it and DeclContext::addDecl properly by Douglas Gregor · 16 years ago
- f4006be Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow by Douglas Gregor · 16 years ago
- af8ad2b Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
- 5457c5e Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
- 6ec8955 Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 16 years ago
- 46fe06e Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
- 8b76997 Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
- cd883f7 Convert a few expression actions to smart pointers. by Sebastian Redl · 16 years ago
- b3860a7 Convert ObjC statement actions to smart pointers. by Sebastian Redl · 16 years ago
- c6b8633 Convert asm statement action to smart pointers. by Sebastian Redl · 16 years ago
- 539eb57 Convert more statement actions to smart pointers. by Sebastian Redl · 16 years ago
- 7903d05 Vector codegen improvements by Nate Begeman · 16 years ago
- d6d2f77 Support evaluation of vector constant expressions, and codegen of same. by Nate Begeman · 16 years ago
- 1486b50 Update support for vector component access on ExtVectors. by Nate Begeman · 16 years ago
- 5738547 Remove outdated diagnostic. Tests are coming. by Nate Begeman · 16 years ago
- 7b49cec Change TargetInfo::validateInputConstraint to take begin/end name iterators instead of the number of outputs. No functionality change. by Anders Carlsson · 16 years ago
- 7b4695f Diagnose when method parameter is an object. by Fariborz Jahanian · 16 years ago
- 72de849 Warn about typedefs of enums without any declarator name. Fixes rdar://problem/6503878 by Douglas Gregor · 16 years ago
- d07474b PODify LookupResult, for a measly 1% speedup on Cocoa.h. by Douglas Gregor · 16 years ago
- 98b2754 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 16 years ago
- 19c74d3 Convert some more statement actions to smart pointers. by Sebastian Redl · 16 years ago
- 44da7a1 Don't ICE (issue diagnostics) when receiver is a non-objc type. by Fariborz Jahanian · 16 years ago
- de93967 Don't ICE on user redeclaration of objc's built-in types. by Fariborz Jahanian · 16 years ago
- 50500f6 silence release-assert warning. by Chris Lattner · 16 years ago
- 5ac8ffa Fix <rdar://problem/6502934>. We were creating an ImplicitCastExpr by Douglas Gregor · 16 years ago
- 9eaf2b7 minor cleanups to StringLiteralParser: no need to pass target info by Chris Lattner · 16 years ago
- 861e790 Part one of handling C++ functional casts. This handles semantic by Douglas Gregor · 16 years ago
- 4b8e38c Use a single function for doing vararg argument promotion. Also, make sure to do the promotion before checking the type - fixes PR3340. by Anders Carlsson · 16 years ago
- fd5f143 rename PP::getPhysicalCharacterAt -> PP::getSpelledCharacterAt. by Chris Lattner · 16 years ago
- 2b3c3dd Extract code dealing with typedef declarators into a separate function. by Zhongxing Xu · 16 years ago
- 511d45b Extract code dealing with variable declarator into a separate function. by Zhongxing Xu · 16 years ago
- 7502dec Extract code dealing with declarators of function type into a separate function by Zhongxing Xu · 16 years ago
- b9ef055 Improve diagnostics for ambiguous name lookup results by Douglas Gregor · 16 years ago
- 8c6dc7a PR3330: given an enum like this: by Chris Lattner · 16 years ago
- ddebeca Fix some unused variable, control reaches end of non-void function, by Daniel Dunbar · 16 years ago
- 8260d5d add support for initializing static vars with a cast to union (gcc extension) by Nuno Lopes · 16 years ago
- 27b3395 PR2746: Implement GCC cast to union extension by Seo Sanghyeon · 16 years ago
- 6beddfe Deallocate the BasePaths structure that we allocate for LookupResult. by Douglas Gregor · 16 years ago