]> granicus.if.org Git - clang/history - Parse
Add a makefile to build and install headers.
[clang] / Parse /
2008-02-29 Steve NaroffFix http://llvm.org/bugs/show_bug.cgi?id=2106.
2008-02-29 Chris LattnerAdd support for attribute(deprecated), patch by Nuno...
2008-02-27 Ted KremenekAdded support for attribute "noreturn."
2008-02-26 Chris Lattneradd parsing, ast building and pretty printing support...
2008-02-25 Chris Lattnerconvert tabs to spaces, patch by Mike Stump!
2008-02-21 Nate BegemanHandle __attribute__((annotate("string")))
2008-02-21 Chris LattnerCollect and build and process type attributes on pointe...
2008-02-20 Chris Lattneradd a method to AttributeList that converts an identifi...
2008-02-14 Chris LattnerParseCompoundStatementBody expects to only be called...
2008-02-14 Steve NaroffRemove DeclSpec::Invalid, a recently added bool that...
2008-02-14 Steve NaroffA much better fix for http://llvm.org/bugs/show_bug...
2008-02-12 Steve NaroffAllow the parser to detect invalid DeclSpec's. This...
2008-02-11 Steve NaroffSeveral cleanups surrounding Parser::ParseAsmStatement...
2008-02-11 Steve NaroffMove policy on unnamed fields (a Microsoft extension...
2008-02-11 Steve NaroffMove Microsoft __declspec hack from the parser to the...
2008-02-10 Chris LattnerFix PR1999, by emitting a hard error only if an argumen...
2008-02-09 Anders CarlssonBehave correctly if a constraint expression is invalid.
2008-02-08 Steve NaroffUse getLogicalLineNumber() in FuzzyParseMicrosoftAsmSta...
2008-02-08 Steve NaroffSupport fuzzy parsing MS line-oriented __asm's that...
2008-02-08 Anders CarlssonPut back the top-level asm code; all tests pass now.
2008-02-08 Anders CarlssonBack out 46855 for now, it causes test failures on...
2008-02-07 Steve Naroff- Add support for fuzzy parsing line-oriented __asm...
2008-02-07 Anders CarlssonHandle top-level asm declarations.
2008-02-07 Steve NaroffMinor cleanup from yesterday's -fms-extension commit...
2008-02-07 Steve NaroffImplement -fms-extensions. This allows us to fuzzy...
2008-02-05 Steve NaroffAdd a FIXME to clarify previous commit/experiment.
2008-02-05 Anders CarlssonHandle simple asm statements correctly.
2008-02-05 Steve NaroffFix Parser::ParseObjCTryStmt() to allow for trailing...
2008-02-02 Chris LattnerImplement support for __extension__ which silences...
2008-01-31 Steve NaroffFix http://llvm.org/bugs/show_bug.cgi?id=1967.
2008-01-31 Chris LattnerFix PR1965: missing diagnostics for parameters that...
2008-01-31 Nate BegemanRemainder of the __builtin_overload feedback
2008-01-30 Chris LattnerOn an unexpected @foo keyword, return failure instead...
2008-01-30 Fariborz JahanianFixed misc. issues raised by Chris L. on @synchronized...
2008-01-29 Fariborz JahanianAST for @synchronized.
2008-01-29 Fariborz JahanianBunch of type defs, etc. for @synchronized.
2008-01-25 Steve NaroffAdd more support for Apple's "private extern" extension...
2008-01-25 Chris LattnerAdd support for dispatching an objc message to a variable
2008-01-25 Chris LattnerFirst half of a fix for the "objc message send in initi...
2008-01-25 Chris LattnerFactor a complex predicate out to a helper method.
2008-01-25 Chris Lattnersplit the second half of ParseObjCMessageExpression...
2008-01-25 Chris Lattnerremove an implemented todo
2008-01-17 Nate BegemanImplement basic overload support via a new builtin...
2008-01-12 Chris LattnerFix a fixme, by only parsing extern "C" in C++ mode.
2008-01-12 Chris LattnerAdd first pieces of support for parsing and representing
2008-01-10 Fariborz JahanianWarn (as gcc does) when @end does not close anything.
2008-01-07 Ted KremenekSubstituted all instances of the string "Objc" for...
2008-01-04 Fariborz JahanianAdded a comment, minor refactoring of foreach parsing...
2008-01-04 Fariborz JahanianMinor changes as suggested by Chris L.
2008-01-03 Fariborz JahanianPatch to parse/build AST ObjC2's foreach statement.
2008-01-02 Fariborz JahanianNew declarations/defs for Objc2's foreach-statement...
2008-01-02 Fariborz JahanianIssue diagnostic when objective-c's @interface is prece...
2008-01-02 Fariborz JahanianPrevent crash on incorrect objc messaging expression.
2007-12-29 Chris Lattnerremove attribution from makefiles.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-27 Chris LattnerFix a crash on a top-level objc string, patch by Nico...
2007-12-27 Chris Lattner - Use Tok.isObjCAtKeyword instead of Tok.getIdentifier...
2007-12-18 Chris LattnerFix an nice and subtle parser bug reported by Nico...
2007-12-18 Steve NaroffAdd __private_extern__ keyword and recognize it. Added...
2007-12-13 Chris Lattneruse new interface.
2007-12-12 Fariborz JahanianConcatenation of objc strings.
2007-12-12 Ted KremenekTargetInfo no longer includes a reference to SourceManager.
2007-12-12 Chris Lattnermove function to a more logical location, add its gramm...
2007-12-12 Chris Lattnerremove todo
2007-12-12 Chris Lattnersimplify some code.
2007-12-12 Chris LattnerAdd ObjC parser support for concatenated ObjC strings...
2007-12-11 Ted KremenekMega-patch: ripped SourceManager out of Diagnostic...
2007-12-11 Fariborz JahanianFixed a parsing bug whereby @optional/@required keyword...
2007-12-07 Fariborz JahanianPatch to implement "Protocol" as a built-in type declar...
2007-12-05 Steve NaroffMake sure Parser::ParseObjCSelectorExpression() handles...
2007-12-02 Chris Lattnerimprove VC++ compatibility, patch by Cédric Venet.
2007-12-01 Seo SanghyeonTest commit
2007-11-29 Steve NaroffYesterday, I simplified how we stream top-level decls.
2007-11-28 Steve NaroffSeveral fixes/simplifications surrounding how we stream...
2007-11-23 Anders CarlssonKeep track of whether the asm is volatile or not.
2007-11-22 Anders CarlssonStore output and input operands as well as clobber...
2007-11-21 Anders CarlssonGCC fails if there is a trailing colon but no clobbers.
2007-11-20 Anders CarlssonStore inline asm code in the AST.
2007-11-15 Steve NaroffFinish up variadic methods/messages.
2007-11-15 Steve NaroffImplement support for variadic methods (work in progress).
2007-11-15 Chris LattnerHandle "bool" in all places that touch _Bool.
2007-11-13 Steve NaroffRewrite method definition bodies. Also renamed a method...
2007-11-13 Nate BegemanGive AST-walk passes a way to access DeclSpec attribute...
2007-11-13 Chris LattnerParse "sizeof(arr)[0]" as a sizeof of an expr if arr
2007-11-12 Fariborz Jahanian'super' nailed.
2007-11-12 Steve NaroffAdd an error diagnostic to Parse::ParseObjCMessageExpre...
2007-11-11 Steve NaroffReplace 2 method definition actions (ActOnFunctionDefBo...
2007-11-11 Steve NaroffReplace 3 method definition functions (ObjcParseMethodD...
2007-11-11 Steve NaroffThis is the last 5% of the solution to teaching Sema...
2007-11-10 Fariborz Jahanianpretty priting for method definitions.
2007-11-10 Fariborz JahanianRepresent method definitions as separate AST nodes...
2007-11-09 Fariborz JahanianSome code clean up in the form of name changes for...
2007-11-09 Fariborz JahanianAdded class context to method declarations. Provide...
2007-11-08 Fariborz JahanianFirst patch toward rewriting of method definitions...
2007-11-08 Fariborz JahanianRefactored parsing of main function body for reuse...
2007-11-07 Fariborz JahanianAST for objective-c's @throw statement and its pretty...
2007-11-06 Fariborz JahanianPatch for objc2's property ASTs, as well as pretty...
2007-11-03 Steve NaroffImplement rewrite rules for ObjC string constants.
2007-11-02 Fariborz Jahanianpretty-print @try/@catch/@finally from AST as the valid...
2007-11-02 Fariborz JahanianAST for @try statement.
next