]> granicus.if.org Git - clang/history - Sema
the macro start and macro end bits in source location are dead, remove them.
[clang] / Sema /
2008-02-01 Steve NaroffRename diagnostic to reflect it's role...
2008-02-01 Anders CarlssongetPrimaryDecl can return null.
2008-02-01 Anders CarlssonIt is allowed to get the address of an array subscript...
2008-02-01 Chris Lattnermake some diagnostics more terse, update testcases.
2008-02-01 Chris LattnerSema::ActOnInstanceMessage is generally doing bad thing...
2008-01-31 Nate BegemanRemainder of the __builtin_overload feedback
2008-01-30 Steve NaroffHack Sema::MergeTypeDefDecl() to silently ignore duplic...
2008-01-30 Nate BegemanImplement first round of feedback on __builtin_overload
2008-01-30 Devang PatelAdd TODO marker so that it is easier to search.
2008-01-30 Eli FriedmanIgnore __aligned__ with zero arguments in addition...
2008-01-30 Eli FriedmanFix codegen for conditionals with incommpatible pointer...
2008-01-30 Steve NaroffMany refinements to Sema::MergeVarDecl(). This routine...
2008-01-29 Fariborz JahanianRewriting of @synchronized. This has one FIXME in it...
2008-01-29 Fariborz JahanianAST for @synchronized.
2008-01-29 Steve NaroffTighten up ASTContext::typesAreCompatible()...it needs...
2008-01-29 Eli FriedmanUse the canonical type when comparing array types so...
2008-01-29 Steve NaroffTweak Sema::DefaultArgumentPromotion() to call UsualUna...
2008-01-28 Steve NaroffImplement "private extern" on function decls!
2008-01-28 Steve NaroffFix a bug with struct initializers (in Sema::CheckIniti...
2008-01-25 Steve NaroffAdd more support for Apple's "private extern" extension...
2008-01-25 Fariborz JahanianDiagnose bad receiver type.
2008-01-25 Steve NaroffReplace Sema::CheckVariableInitList, CheckConstantInitL...
2008-01-25 Chris LattnerFix a bug recovering from broken code with a goto that...
2008-01-24 Steve NaroffExclude vectors from Type::isScalar() predicate.
2008-01-22 Steve Naroff- Add Sema::CheckStringLiteralInit, Sema::IsStringLiter...
2008-01-21 Steve NaroffSema::CheckInitializerTypes(). Start simpliying and...
2008-01-21 Fariborz JahanianElimate bogus warning when va_start is correctly used in
2008-01-18 Steve NaroffSema::FinalizeDeclaratorGroup(): Tighten up the tentati...
2008-01-18 Steve NaroffSema::FinalizeDeclaratorGroup()...make sure we emit...
2008-01-17 Fariborz JahanianDon't ICE on missing interface declaration when declari...
2008-01-17 Ted KremenekFixed typo introduced by r46133 that caused -Wfloat...
2008-01-17 Nate BegemanImplement basic overload support via a new builtin...
2008-01-17 Fariborz JahanianRenamed getSynthesizedSelectorSize to getSynthesizedMet...
2008-01-17 Ted KremenekAdded method Expr::IgnoreParens(), which returns the...
2008-01-17 Fariborz JahanianComputed length of a __func__ identifier used in an...
2008-01-16 Chris LattnerMove promoteExprToType from being a static method in...
2008-01-16 Steve NaroffSema::MergeFunctionDecl()...make sure diagnostic is...
2008-01-15 Steve NaroffFinish up handling all permutations of "complex int...
2008-01-15 Steve Naroff- Change Type::isComplexType() to exlude GCC's complex...
2008-01-15 Steve NaroffRework commit r45976, which was incorrect.
2008-01-14 Steve NaroffMake sure Sema::GetTypeForDeclarator() deals with abstr...
2008-01-14 Chris LattnerFix build issue on cygwin, patch by Sam Bishop
2008-01-14 Steve NaroffFix crasher when redefining functions. Not 100% pleased...
2008-01-14 Steve NaroffRecord if a compound literal expression is @ file scope...
2008-01-13 Steve NaroffChange Sema::CheckAddressOfOperation() to respect C99...
2008-01-12 Chris Lattnerallow __func__ in objc methods.
2008-01-12 Chris LattnerTighten up handling of __func__ and friends: it should...
2008-01-12 Chris LattnerFix the type of predefined identifiers like __func__...
2008-01-12 Chris LattnerAdd first pieces of support for parsing and representing
2008-01-10 Steve Naroff- Teach Expr::isConstantExpr() about InitListExpr's...
2008-01-10 Fariborz JahanianRecover from user typo not having proper @interface...
2008-01-10 Fariborz JahanianAllow messaging expression as foreach's collection...
2008-01-09 Steve NaroffFix Sema::ActOnDeclarator() to call MergeFunctionDecl...
2008-01-09 Steve NaroffFix ASTContext::typesAreCompatible to allow for int...
2008-01-09 Steve NaroffTeach Sema::ActOnCompoundLiteral about constraint C99...
2008-01-08 Steve NaroffFix Sema::CheckConditionalOperands(). The null pointer...
2008-01-07 Ted KremenekSubstituted all instances of the string "Objc" for...
2008-01-07 Fariborz JahanianLimit type of foreach's element and collection to be...
2008-01-07 Fariborz JahanianIssue diagnostics if more than one declaration in objec...
2008-01-07 Chris Lattnerminor cleanup.
2008-01-06 Chris Lattnerrearrange some code.
2008-01-06 Chris Lattnersome simplifications/cleanups to ?: sema.
2008-01-06 Chris LattnerEmit warnings like "dereferencing void pointer" instead...
2008-01-05 Fariborz Jahaniantwiks based on Chris's comment. No need to iterate...
2008-01-04 Fariborz JahanianMinor refactoring of foreach's semantics code per Chris...
2008-01-04 Chris Lattnerunnest vector handling again.
2008-01-04 Chris Lattnerwe already test for exact type matches early, so we...
2008-01-04 Chris Lattnersimplify some of this code by removing the else/if...
2008-01-04 Chris Lattnermove objc expr sema to its own file.
2008-01-04 Chris Lattneradd comments for the various AssignConvertType's, and...
2008-01-04 Chris LattnerMerge all the 'assignment' diagnostic code into one...
2008-01-04 Fariborz JahanianPatch to add semantics check for ObjC2's foreacn statement.
2008-01-03 Chris Lattnergeneralize some of the conversion warnings.
2008-01-03 Chris Lattnerregroup assignment-related diagnostics, fix a mistake...
2008-01-03 Chris Lattnergive better diagnostics for converting between function...
2008-01-03 Fariborz JahanianRemove cause of misc. "variable might be used uninitial...
2008-01-03 Fariborz JahanianFixed a bug reported by Chris, involving assiging 0...
2008-01-03 Fariborz JahanianPatch to parse/build AST ObjC2's foreach statement.
2008-01-02 Chris LattnerWhen promoting array to pointer for argument, don't...
2008-01-02 Chris LattnerCompute the proper sourcerange for an CompoundLiteralExpr.
2007-12-30 Nate BegemanAllow implicit casts during arithmetic for OCUVector...
2007-12-30 Nate BegemanAllow splat casts for OCU vector assignments & add...
2007-12-29 Chris Lattnerremove attribution from makefiles.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-28 Chris Lattnervarious cleanups. Use IgnoreParenCasts instead of...
2007-12-28 Chris Lattnerunindent cases in a switch stmt, no functionality change.
2007-12-28 Chris LattnerChange Sema::ActOnCallExpr to construct the CallExpr...
2007-12-21 Fariborz JahanianMore objective-c type analysis. This time involving...
2007-12-20 Fariborz JahanianPatch to do type-checking for objctive-c's object types.
2007-12-20 Fariborz JahanianMore objective-c typechecking stuff. This is work in...
2007-12-20 Chris LattnerImplement codegen for ordered comparison builtins.
2007-12-20 Chris Lattnerimplement semantic analysis for __builtin_islessequal...
2007-12-20 Chris Lattnersimplify some code.
2007-12-19 Chris Lattnerrefactor some code that handles sema of direct function...
2007-12-19 Ted KremenekInterned MainFileID within SourceManager. Since SourceM...
2007-12-19 Steve NaroffVarious tweaks to the get/lookup instance/class method...
2007-12-19 Chris Lattnerreenable this code, fix the testcase.
2007-12-19 Chris Lattnerdisable my commit from yesterday, fixing a regression...
2007-12-19 Fariborz JahanianThis patch concludes implementation of dynamic objectiv...
2007-12-19 Anders CarlssonFix the embarassing typo for real this time (- vs _...
next