]> granicus.if.org Git - clang/shortlog
clang
2007-08-26 Chris Lattnerfix codegen of pre/post inc/dec of a pointer.
2007-08-26 Chris Lattnertolerate unimplemented codegen better
2007-08-26 Chris Lattnerint X[] isn't a VLA. This improves support for stdio...
2007-08-26 Neil BoothMake some diags EXTENSION so they are errors with pedan...
2007-08-26 Chris Lattnerimplement rudimentary union layout support.
2007-08-26 Chris LattnerWhy didn't gcc catch this? :(
2007-08-26 Chris LattnerDon't make unknown builtins fatal errors yet.
2007-08-26 Chris Lattnerremove a bunch of dead code
2007-08-26 Chris Lattnerfix a bug introduced by the recent childification of...
2007-08-26 Chris LattnerMake parse-ast-print print the storage class and inline
2007-08-26 Chris Lattnernull pointers don't get an extra newline.
2007-08-26 Chris Lattnerimplement codegen for complex literals.
2007-08-26 Chris Lattneradd a new ImaginaryLiteral AST node that is used to
2007-08-26 Chris Lattner1.0 is double, 1.0F is a float.
2007-08-26 Chris Lattner1) refactor some code.
2007-08-26 Chris Lattnermerge checkrelational and checkequality into CheckCompa...
2007-08-26 Chris LattnerCases like this:
2007-08-25 Chris Lattnernew testcase
2007-08-25 Chris LattnerThe new correct compound assignment operators exposed...
2007-08-25 Steve NaroffSurpress the UsualUnaryConversions for compound assignm...
2007-08-25 Chris Lattnerread and ignore the body of a namespace.
2007-08-25 Steve NaroffChange Expr::isLvalue() to properly deal with ImplicitC...
2007-08-25 Steve NaroffGive CXXBoolLiteralExpr a type (all expressions need...
2007-08-25 Chris Lattnerrefactor enough of the top-level parsing logic to parse and
2007-08-25 Chris LattnerC++ explicitly allows an empty source file.
2007-08-25 Chris LattnerFix the test/Sema/format-strings.c regression. This...
2007-08-25 Chris Lattnerreenable this.
2007-08-25 Chris LattnerFix the regression on test/Sema/cfstring.c
2007-08-25 Chris Lattnertest the parser only, not sema.
2007-08-25 Chris LattnerSplit the ASTNode out for compound assignments out...
2007-08-25 Chris Lattnerfix off-by-one error
2007-08-25 Chris LattnerFix clang -parse-ast-dump carbon.c
2007-08-25 Chris Lattnerrename sNames -> StmtClassInfo. Make lookups constant...
2007-08-24 Steve NaroffThis modest change insures ImplicitCastExpr's get gener...
2007-08-24 Chris Lattnerremove a dead argument
2007-08-24 Chris Lattnerimplement codegen for real/imag. TODO: imag of non...
2007-08-24 Chris LattnerImplement sema support for __real/__imag nodes.
2007-08-24 Ted KremenekAdded child_begin/child_end to all subclasses of Stmt...
2007-08-24 Chris LattnerTeach emit-llvm for scalars to properly handle compound...
2007-08-24 Ted KremenekAdded ExprCXX.cpp
2007-08-24 Ted KremenekImplementation of child_begin/child_end for C++ express...
2007-08-24 Ted KremenekImplemented child_begin/child_end for our current set...
2007-08-24 Ted KremenekFinished adding child_begin/child_end to all subclasses...
2007-08-24 Steve NaroffSurpress ImplicitCastExprs for compound assignment...
2007-08-24 Ted KremenekBegan implementing "child iterator" interface for Stmts...
2007-08-24 Steve NaroffMake sure we get extension diagnostics for GCC's comple...
2007-08-24 Chris Lattnerprint the computation type for compound assignment...
2007-08-24 Chris Lattnercompletely refactor codegen of scalar expressions out...
2007-08-24 Chris Lattnerrename two files.
2007-08-24 Chris Lattnerimplement codegen of builtin_choose_expr for complex.
2007-08-24 Chris Lattnerstub out complex -> bool conversion.
2007-08-23 Chris Lattnermake this harder
2007-08-23 Chris Lattnerimplement complex subtraction
2007-08-23 Chris Lattnerimplement passing of complex and aggregates through...
2007-08-23 Chris Lattnerin the truncation case, make sure to propagate the...
2007-08-23 Steve NaroffSupport '~' for complex conjugation. This is a GCC...
2007-08-23 Chris Lattnerfix a bug where we would type 0ULL as unsigned instead...
2007-08-23 Chris LattnerPretty print as:
2007-08-23 Chris Lattnersizeof(x) doesn't require x to be an i-c-e for sizeof...
2007-08-23 Ted KremenekNo functionality change. Moved visitor methods for...
2007-08-23 Chris Lattneradd support for codegen of calls returning complex.
2007-08-23 Steve NaroffRemove a FIXME, allowing ++/-- on Complex types (a...
2007-08-23 Ted Kremenekmoved CFGBuilder into an anonymous namespace
2007-08-23 Steve Naroff- Cleanup "hack" comment and fix typos.
2007-08-23 Ted KremenekAdded support for switch, default, and case statements...
2007-08-23 Chris Lattnerfinish off switch case overlap checking, adding support for
2007-08-23 Steve NaroffAdd helper functions Token::isObjCAtKeyword() and Token...
2007-08-23 Ted KremenekRefactored "getSubStmt" and "SubStmt" from the CaseStmt...
2007-08-23 Chris Lattnerdetect and diagnose empty case ranges:
2007-08-23 Ted KremenekFor gotos, breaks, and continues where we cannot find...
2007-08-23 Ted KremenekAdded support for do..while loops in CFG construction.
2007-08-23 Ted KremenekModified CFG to have explicit "Exit" pointer for exit...
2007-08-23 Ted KremenekRenamed "CFG::BuildCFG" to "CFG::buildCFG" to have...
2007-08-23 Anders CarlssonAs suggested by Chris, use MatchRHSPunctuation instead...
2007-08-23 Anders CarlssonParse ObjC @protocol expressions.
2007-08-23 Chris Lattnerfix a segfault in cases where there are no cases.
2007-08-23 Chris Lattnerreport duplicate case values. TODO: report duplicate...
2007-08-23 Chris Lattnerthis test is passing, though it is generating bogus...
2007-08-23 Chris Lattnerstart checking case values of switch stmts more closely...
2007-08-23 Chris LattnerUpdate to match the API from LLVM mainline.
2007-08-23 Chris Lattnerrun .m files as tests
2007-08-23 Chris LattnerTest that cocoa parses with -parse-noop. In the future
2007-08-22 Steve NaroffWith this commit, we now successfully parse "Cocoa.h"!
2007-08-22 Ted KremenekFixed bugs in source-level CFG construction for "for...
2007-08-22 Steve NaroffFix a misleading comment...
2007-08-22 Steve NaroffAdd support for parsing protocols.
2007-08-22 Ted KremenekAdded support for "break" statements in source-level...
2007-08-22 Ted KremenekAdded support for "continue" statements in source-level...
2007-08-22 Ted KremenekAdded preliminary support for while loops within source...
2007-08-22 Ted KremenekAdded explicit pointer within class CFG to the Entry...
2007-08-22 Steve NaroffFinish up method prototype parsing.
2007-08-22 Ted KremenekAdded CFG support for: for loops
2007-08-22 Steve NaroffAdd support for parsing method prototypes (and other...
2007-08-22 Ted KremenekChanged data structure recording the CFG blocks that...
2007-08-22 Anders CarlssonParse @encode expressions.
2007-08-22 Chris Lattnerupdate todo markers
2007-08-22 Chris Lattneroptimize scope push/pop to avoid work in the common...
2007-08-22 Chris LattnerFix the scoping issue Neil pointed out for the rest of
2007-08-22 Chris LattnerFix a nasty C99 scope issue that Neil pointed out ...
2007-08-21 Ted KremenekAdded CFG support for gotos and labels.
next