Age | Commit message (Expand) | Author |
2008-03-15 | Make a major restructuring of the clang tree: introduce a top-level | Chris Lattner |
2008-03-13 | handle __extension__ properly at block scope. | Chris Lattner |
2008-03-13 | instead of passing in null end location info, pass in the same as start. | Chris Lattner |
2008-03-13 | improve DeclStmt to be able to store SourceRange info correctly. | Chris Lattner |
2008-02-11 | Several cleanups surrounding Parser::ParseAsmStatement() and Parser::FuzzyPar... | Steve Naroff |
2008-02-09 | Behave correctly if a constraint expression is invalid. | Anders Carlsson |
2008-02-08 | Use getLogicalLineNumber() in FuzzyParseMicrosoftAsmStatement(), it's more ge... | Steve Naroff |
2008-02-08 | Support fuzzy parsing MS line-oriented __asm's that originate from a macro (a... | Steve Naroff |
2008-02-07 | - Add support for fuzzy parsing line-oriented __asm's (yuck). | Steve Naroff |
2008-02-07 | Implement -fms-extensions. This allows us to fuzzy parse non-standard MS cons... | Steve Naroff |
2008-02-05 | Handle simple asm statements correctly. | Anders Carlsson |
2008-02-05 | Fix Parser::ParseObjCTryStmt() to allow for trailing @-keyword statements/exp... | Steve Naroff |
2008-01-31 | Fix http://llvm.org/bugs/show_bug.cgi?id=1967. | Steve Naroff |
2008-01-29 | Bunch of type defs, etc. for @synchronized. | Fariborz Jahanian |
2008-01-07 | Substituted all instances of the string "Objc" for "ObjC". This fixes | Ted Kremenek |
2008-01-04 | Added a comment, minor refactoring of foreach parsing code per Chris's sugges... | Fariborz Jahanian |
2008-01-04 | Minor changes as suggested by Chris L. | Fariborz Jahanian |
2008-01-03 | Patch to parse/build AST ObjC2's foreach statement. | Fariborz Jahanian |
2007-12-29 | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner |
2007-12-27 | Fix a crash on a top-level objc string, patch by Nico Weber | Chris Lattner |
2007-12-12 | remove todo | Chris Lattner |
2007-12-01 | Test commit | Seo Sanghyeon |
2007-11-23 | Keep track of whether the asm is volatile or not. | Anders Carlsson |
2007-11-22 | Store output and input operands as well as clobber information in the AsmStmt... | Anders Carlsson |
2007-11-21 | GCC fails if there is a trailing colon but no clobbers. | Anders Carlsson |
2007-11-20 | Store inline asm code in the AST. | Anders Carlsson |
2007-11-11 | Replace 2 method definition actions (ActOnFunctionDefBody, ActOnMethodDefBody... | Steve Naroff |
2007-11-08 | Refactored parsing of main function body for reuse by objective-c methods. | Fariborz Jahanian |
2007-10-30 | More support for rewriting ObjC intefaces. Still some edge cases to handle... | Steve Naroff |
2007-10-29 | improve error recovery handling broken 'then' or 'else' stmts in | Chris Lattner |
2007-10-29 | Fix a parser bug on labeled inline asm stmts, allowing us | Chris Lattner |
2007-10-29 | Implement *skeletal* support for representing GNU inline asm stmts in the AST, | Chris Lattner |
2007-10-11 | Implemented parsing of objctive-c protocol conforming type used in | Fariborz Jahanian |
2007-10-09 | switch more code to use Token::is/isNot where possible. | Chris Lattner |
2007-10-04 | this patch accomodates clattner's comments on expression processing in @try-s... | Fariborz Jahanian |
2007-09-19 | Patch to parse objective-c's @try-statement and @throw-statement. | Fariborz Jahanian |
2007-09-16 | Rename statement actions (from Parse-prefix to ActOn-prefix). | Steve Naroff |
2007-09-16 | Rename expression actions (from Parse-prefix to ActOn-prefix). | Steve Naroff |
2007-08-31 | Fix a bug/missing-feature Ted noticed: the 'unused' warning should not | Chris Lattner |
2007-08-27 | extwarn about decls intermixed with code in c89 mode. | Chris Lattner |
2007-08-27 | implement a fixme: __extension__ marker on decls in compound stmts. | Chris Lattner |
2007-08-26 | Fix test/Parser/if-scope-*.c. Patch by Neil Booth! | Chris Lattner |
2007-08-26 | Break the assumption that any sort of scope (e.g. a loop scope) can | Chris Lattner |
2007-08-22 | optimize scope push/pop to avoid work in the common case. | Chris Lattner |
2007-08-22 | Fix the scoping issue Neil pointed out for the rest of | Chris Lattner |
2007-08-22 | Fix a nasty C99 scope issue that Neil pointed out (for ifs) | Chris Lattner |
2007-07-22 | Refactor switch analysis to make it possible to detect duplicate case values | Anders Carlsson |
2007-07-22 | Catch goto's with a missing identifier, patch by Neil Booth. | Chris Lattner |
2007-07-20 | At one point there were going to be lexer and parser tokens. | Chris Lattner |
2007-07-18 | Add initial switch stmt support, patch by Anders Carlsson! | Chris Lattner |