- 440b456 Add fastcall/stdcall attribute support by Nate Begeman · 17 years ago
- ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
- da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 17 years ago
- 7e669b2 Add support for attribute(deprecated), patch by Nuno Lopes! by Chris Lattner · 17 years ago
- aecb383 Added support for attribute "noreturn." by Ted Kremenek · 17 years ago
- 50dd289 add parsing, ast building and pretty printing support for C++ throw expressions. by Chris Lattner · 17 years ago
- c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
- c398f0b Handle __attribute__((annotate("string"))) by Nate Begeman · 17 years ago
- 7654914 Collect and build and process type attributes on pointers. For by Chris Lattner · 17 years ago
- 2335191 add a method to AttributeList that converts an identifier to an enum. by Chris Lattner · 17 years ago
- c1b3ba5 ParseCompoundStatementBody expects to only be called with { as the current by Chris Lattner · 17 years ago
- 96715ae by Steve Naroff · 17 years ago
- e39bfd0 by Steve Naroff · 17 years ago
- 9532414 by Steve Naroff · 17 years ago
- 5f8aa69 by Steve Naroff · 17 years ago
- e7a3730 by Steve Naroff · 17 years ago
- 705b5b5 by Steve Naroff · 17 years ago
- 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago
- 8bd36fc Behave correctly if a constraint expression is invalid. by Anders Carlsson · 17 years ago
- 3628097 by Steve Naroff · 17 years ago
- 03d6bc6 by Steve Naroff · 17 years ago
- dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
- 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
- b746ce8 by Steve Naroff · 17 years ago
- 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
- 419154d by Steve Naroff · 17 years ago
- d62701b by Steve Naroff · 17 years ago
- 5e7dc44 by Steve Naroff · 17 years ago
- dfab34a Handle simple asm statements correctly. by Anders Carlsson · 17 years ago
- 64515f3 by Steve Naroff · 17 years ago
- 3508084 Implement support for __extension__ which silences extwarnings in its by Chris Lattner · 17 years ago
- d1a7cf8 by Steve Naroff · 17 years ago
- e0e713b Fix PR1965: missing diagnostics for parameters that are missing by Chris Lattner · 17 years ago
- 796ef3d Remainder of the __builtin_overload feedback by Nate Begeman · 17 years ago
- 9d49395 On an unexpected @foo keyword, return failure instead of a 'successful' null AST. This fixes a segfault by Chris Lattner · 17 years ago
- 78a677b Fixed misc. issues raised by Chris L. on @synchronized implementation. by Fariborz Jahanian · 17 years ago
- fa3ee8e AST for @synchronized. by Fariborz Jahanian · 17 years ago
- c385c90 Bunch of type defs, etc. for @synchronized. by Fariborz Jahanian · 17 years ago
- d6326c6 by Steve Naroff · 17 years ago
- 5c74942 Add support for dispatching an objc message to a variable by Chris Lattner · 17 years ago
- da46f3b First half of a fix for the "objc message send in initializer" bug. This only by Chris Lattner · 17 years ago
- 14dd98a Factor a complex predicate out to a helper method. by Chris Lattner · 17 years ago
- 699b661 split the second half of ParseObjCMessageExpression into a new by Chris Lattner · 17 years ago
- 5ac87ed remove an implemented todo by Chris Lattner · 17 years ago
- e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
- 3c6f6a7 Fix a fixme, by only parsing extern "C" in C++ mode. by Chris Lattner · 17 years ago
- c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
- 94cdb25 Warn (as gcc does) when @end does not close anything. by Fariborz Jahanian · 17 years ago
- a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
- bdd15f7 Added a comment, minor refactoring of foreach parsing code per Chris's suggestion. by Fariborz Jahanian · 17 years ago
- 335a2d4 Minor changes as suggested by Chris L. by Fariborz Jahanian · 17 years ago
- 3ba5a0f Patch to parse/build AST ObjC2's foreach statement. by Fariborz Jahanian · 17 years ago
- 0196cab New declarations/defs for Objc2's foreach-statement. This is work in progress. by Fariborz Jahanian · 17 years ago
- 0de2ae2 Issue diagnostic when objective-c's @interface is preceeded by a type specifier. by Fariborz Jahanian · 17 years ago
- 0ba0aa1 Prevent crash on incorrect objc messaging expression. by Fariborz Jahanian · 17 years ago
- 6298b8c remove attribution from makefiles. by Chris Lattner · 17 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
- 516bd46 Fix a crash on a top-level objc string, patch by Nico Weber by Chris Lattner · 17 years ago
- cb53b36 - Use Tok.isObjCAtKeyword instead of Tok.getIdentifierInfo()->getObjCKeywordID(). by Chris Lattner · 17 years ago
- d7d860d Fix an nice and subtle parser bug reported by Nico Weber. by Chris Lattner · 17 years ago
- 8d54bf2 by Steve Naroff · 17 years ago
- aa715be use new interface. by Chris Lattner · 17 years ago
- 79a99f2 Concatenation of objc strings. by Fariborz Jahanian · 17 years ago
- 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
- e8b724d move function to a more logical location, add its grammar productions. by Chris Lattner · 17 years ago
- fbb9898 remove todo by Chris Lattner · 17 years ago
- dcc2cbc simplify some code. by Chris Lattner · 17 years ago
- b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
- 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
- f366b4c Fixed a parsing bug whereby @optional/@required keyword is not followed by by Fariborz Jahanian · 17 years ago
- 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago
- 887407e by Steve Naroff · 17 years ago
- 2efcd2f improve VC++ compatibility, patch by Cédric Venet. by Chris Lattner · 17 years ago
- cd5af4b Test commit by Seo Sanghyeon · 17 years ago
- 89307ff by Steve Naroff · 17 years ago
- 1f64432 by Steve Naroff · 17 years ago
- 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
- b235fc2 Store output and input operands as well as clobber information in the AsmStmt. Ted, could you please review the serialization/deserialization code? by Anders Carlsson · 17 years ago
- eecf847 GCC fails if there is a trailing colon but no clobbers. by Anders Carlsson · 17 years ago
- 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
- 49f109c by Steve Naroff · 17 years ago
- 335eafa by Steve Naroff · 17 years ago
- 9298d96 Handle "bool" in all places that touch _Bool. by Chris Lattner · 17 years ago
- 71c0a95 by Steve Naroff · 17 years ago
- 1b4e251 Give AST-walk passes a way to access DeclSpec attributes on functions and by Nate Begeman · 17 years ago
- 4c1a2a9 Parse "sizeof(arr)[0]" as a sizeof of an expr if arr is an expression. by Chris Lattner · 17 years ago
- 0523aaf 'super' nailed. by Fariborz Jahanian · 17 years ago
- 1150821 by Steve Naroff · 17 years ago
- d6d054d by Steve Naroff · 17 years ago
- 409be83 by Steve Naroff · 17 years ago
- 0416fb9 by Steve Naroff · 17 years ago
- db8f3d3 pretty priting for method definitions. by Fariborz Jahanian · 17 years ago
- 60fbca0 Represent method definitions as separate AST nodes. Pretty print will come next. by Fariborz Jahanian · 17 years ago
- 360300c Some code clean up in the form of name changes for functions which by Fariborz Jahanian · 17 years ago
- 1f7b6f8 Added class context to method declarations. Provide "interface *" type by Fariborz Jahanian · 17 years ago
- 306d68f First patch toward rewriting of method definitions. This is work in progress. by Fariborz Jahanian · 17 years ago
- f9ed315 Refactored parsing of main function body for reuse by objective-c methods. by Fariborz Jahanian · 17 years ago
- 39f8f15 AST for objective-c's @throw statement and its pretty-printing. by Fariborz Jahanian · 17 years ago
- 82a5fe3 Patch for objc2's property ASTs, as well as pretty-priting the ASTs. by Fariborz Jahanian · 17 years ago
- beaf299 by Steve Naroff · 17 years ago