- 82817ba I'm apparently the only sad lonely ppc user left :) by Chris Lattner · 17 years ago
- db094a2 Moved creation of ASTConsumers that can operate on both freshly-parsed and by Ted Kremenek · 17 years ago
- 5ef404f Patch to prevent crash on use of objc2 syntax. by Fariborz Jahanian · 17 years ago
- 7127431 Changed type-cast of "struct objc_super"'s 2nd initializer to match definition of by Fariborz Jahanian · 17 years ago
- 68e7ff8 fix some bogus code noticed by Kevin Andre by Chris Lattner · 17 years ago
- 7019a9e Implement CodeGen for vectors. Don't create unnecessary conversion instructions if the value to be converted is a constant. by Anders Carlsson · 17 years ago
- d35c832 Add sema checking for compound literal expressions. by Anders Carlsson · 17 years ago
- c8ee798 Implement codegen for builtin infinity functions. by Anders Carlsson · 17 years ago
- 677cda1 Revert DidWarn change - It won't catch all cases anyway and GCC warns for every excess element. Maybe later we can add back the limit and make it smarter. by Anders Carlsson · 17 years ago
- e638639 by Steve Naroff · 17 years ago
- 8f6dc77 Implemented serialization of: ObjCEncodeExpr, ObjCSelectorExpr. by Ted Kremenek · 17 years ago
- dca2466 Added serialization support of SourceManager to the clang driver. by Ted Kremenek · 17 years ago
- 1f94100 Renamed SourceManager::Read to SourceManager::CreateAndRegister. by Ted Kremenek · 17 years ago
- 099b474 Implemented initial serialization support for SourceManager. by Ted Kremenek · 17 years ago
- 3cadd03 by Steve Naroff · 17 years ago
- 8fbc88e Removed serialization of FileEntry and DirectoryEntry. This objects will by Ted Kremenek · 17 years ago
- ceee3e8 Type-cast initializers for "struct objc_super" parameter to avoid warning. by Fariborz Jahanian · 17 years ago
- e2c4cd8 Test case for my last patch. by Fariborz Jahanian · 17 years ago
- a70711b Don't assert if objc.h not declared when rewriting. by Fariborz Jahanian · 17 years ago
- e21272f Implemented serialization of SrcMgr::ContentCache. by Ted Kremenek · 17 years ago
- 04b3824 Removed a "TODO" comment as objc1 runtime does not need to do the "TODO". by Fariborz Jahanian · 17 years ago
- b107ce8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
- b6427f8 Fixed a few more comments to change "FileInfo" to "ContentCache." by Ted Kremenek · 17 years ago
- 9551a2c Implemented serialization of FileEntry and DirectoryEntry. by Ted Kremenek · 17 years ago
- 8448d38 Removed searching for "darwin" keyword in target triple. We don't really support by Ted Kremenek · 17 years ago
- 05db37e Removed IntrusiveSPtr. There are no clients of this class anymore, so it is by Ted Kremenek · 17 years ago
- 46dc0a5 Implemented serialization of ObjCStringLiteral. by Ted Kremenek · 17 years ago
- 5bdd4e3 Implemented serialization for ObjcAtThrowStmt. by Ted Kremenek · 17 years ago
- 9c1efff Implemented serialization of ObjcAtTryStmt. by Ted Kremenek · 17 years ago
- 04be5aa Implemented serialization for ObjcAtFinallyStmt. by Ted Kremenek · 17 years ago
- af52677 Implemented serialization for ObjcAtCatchStmt. by Ted Kremenek · 17 years ago
- 05ca599 Fixed order of operands to strstr call. by Ted Kremenek · 17 years ago
- aead472 For target processing, on non-Darwin systems instead of using the host triple, by Ted Kremenek · 17 years ago
- 2c1e9c7 Change <Objc/objc.h> to <objc/objc.h> by Fariborz Jahanian · 17 years ago
- c4ca288 Implemented serialization of TargetInfo. by Ted Kremenek · 17 years ago
- f4c45b0 Added some notes on the -triple and -arch options. by Ted Kremenek · 17 years ago
- 87ce5d1 Fixed a bug exposed by referencing an ivar field using component reference syntax. by Fariborz Jahanian · 17 years ago
- 9b4ebc2 Few cleanups to patch 44551: by Ted Kremenek · 17 years ago
- ae36076 Implemented initial support for "-triple" option to the clang driver. This by Ted Kremenek · 17 years ago
- 0d6ca11 Fix an ast-print/ast-dump bug. by Chris Lattner · 17 years ago
- acb4977 Support for rewriteing of messaging of methods which return float. by Fariborz Jahanian · 17 years ago
- 80a6a5a Added support for messagings which return a structure-value. by Fariborz Jahanian · 17 years ago
- 395a2ab Added getTrueExpr() and getFalseExpr() to ConditionalOperator. These methods by Ted Kremenek · 17 years ago
- 43d6975 Fix for testcase that assigns a dereferenced reference to a pointer. The by Bill Wendling · 17 years ago
- ec86b97 Ignore typedefs in pointer arithmetic codegen. by Seo Sanghyeon · 17 years ago
- f0049e6 Handle initializing vector elements correctly. Emit just one warning if there are excess initializers, instead of one per initializer. by Anders Carlsson · 17 years ago
- 7c6b3d3 add a fixme by Chris Lattner · 17 years ago
- df4852a Implement __builtin_bswap32 and __builtin_bswap64. by Anders Carlsson · 17 years ago
- 12f65f6 fix logic for member expr codegen. by Chris Lattner · 17 years ago
- 2de3b3a Fix isStructureType and isUnionType to ignore typedefs, as stated by Seo Sanghyeon · 17 years ago
- ce39faa Treat discarding array initializer elements as an extwarn (so -pedantic-errors flags it). Allow CodeGen to truncate the initializer if needed. by Christopher Lamb · 17 years ago
- 8b1be77 restore these lines, which fixes some regtest failures. by Chris Lattner · 17 years ago
- d411e04 all filevar's have static storage. Previously a global with by Chris Lattner · 17 years ago
- e86e9ce Commit test for CL 44440. by Christopher Lamb · 17 years ago
- e6e25a5 Fix buggy test by Chris Lattner · 17 years ago
- 9a64cf7 globals can't be vla's by Chris Lattner · 17 years ago
- 9615bf8 add codegen support for global inits that require array decay. by Chris Lattner · 17 years ago
- 2c8569d warn about unhandled initializers instead of crashing on them. by Chris Lattner · 17 years ago
- 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
- 5a2fa14 remove the alloca insertion point inst, which is an internal helper. by Chris Lattner · 17 years ago
- fafad83 merge the llvm global variable when there are multiple C decls. by Chris Lattner · 17 years ago
- 58c3f9e implement codegen for functions whose function body type don't match by Chris Lattner · 17 years ago
- 028380e merge functions with multiple function decls if they have the same name. by Chris Lattner · 17 years ago
- 434415a Teach clang the prototype for __builtin_alloca. by Chris Lattner · 17 years ago
- dc4d280 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 17 years ago
- dc5e826 move unsupported warning into a centralized place. by Chris Lattner · 17 years ago
- fb97b03 Warn about unsupported codegen with the diags machinery, giving us: by Chris Lattner · 17 years ago
- bbb75f6 register clz and ctz builtins. by Chris Lattner · 17 years ago
- 26de465 fix a crash when the rewriter would scan off the beginning of the file. by Chris Lattner · 17 years ago
- 182745a add support for custom client-specific diagnostics. As a testcase, make the by Chris Lattner · 17 years ago
- 6f0768b Add support for __builtin_expect which is needed for assert, by Oliver Hunt · 17 years ago
- 2efcd2f improve VC++ compatibility, patch by Cédric Venet. by Chris Lattner · 17 years ago
- 2824723 Support initalisers for more than just int-typed static variables. by Oliver Hunt · 17 years ago
- ab38e4b Compute side-effect for conditional expression. by Fariborz Jahanian · 17 years ago
- 6e34049 Add #include, patch by Cédric Venet by Chris Lattner · 17 years ago
- c4de6a2 Better match llvm-gcc's behavior for CodeGen naming of anonymous structs and unions. by Christopher Lamb · 17 years ago
- 0f8db70 When generating the CodeGen type name of a struct, union, enum use the typedef by Christopher Lamb · 17 years ago
- cd5af4b Test commit by Seo Sanghyeon · 17 years ago
- e7716e6 make the unused expression warning less noisy by not warning about comma exprs whose by Chris Lattner · 17 years ago
- a977636 simplify some code, add support for functions without a proto by Chris Lattner · 17 years ago
- 1438b49 fix a couple switch codegen problems Oliver reported. by Chris Lattner · 17 years ago
- 68072a7 Fixed bug in the serialization of SelectorTable where we did not register the by Ted Kremenek · 17 years ago
- 0750618 start partitioning the diagnostics into two classes: those by Chris Lattner · 17 years ago
- 7323a62 String literals are always valid LValues. by Anders Carlsson · 17 years ago
- bdbb285 Implemented serialization of SelectorTable and Selectors. by Ted Kremenek · 17 years ago
- e365c50 pass diagnostics into the rewrite test client. by Chris Lattner · 17 years ago
- 6c19a04 Initialize CurMethodDecl to 0. by Anders Carlsson · 17 years ago
- 3907323 GCC has an extension where the left hand side of the ? : operator can be omitted. Handle this in a few more places. by Anders Carlsson · 17 years ago
- b0ff33a Initialize LaxVectorConversions. by Anders Carlsson · 17 years ago
- 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
- 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
- c69a581 Support fully general case expressions, patch by Sanghyeon Seo! by Chris Lattner · 17 years ago
- fbd9173 Doh! Check in this long overdue test fix. by Christopher Lamb · 17 years ago
- 695dbb6 Support lax vector conversions. by Anders Carlsson · 17 years ago
- 89307ff by Steve Naroff · 17 years ago
- 2ff3e69 Added method "HandleTopLevelDeclaration" to ASTConsumer. This will eventually by Ted Kremenek · 17 years ago
- 48b1239 Update the initializer's type, in addition to the decl, if we've changed the type of the decl based on it. by Christopher Lamb · 17 years ago
- 5026540 Added "complex.c" (a copy of test/Codegen/complex.) to the serialization by Ted Kremenek · 17 years ago
- 6127b12 Only serialize top-level decls that appear at the head of a decl chain. by Ted Kremenek · 17 years ago
- 016765e Support floating point literals of the form "1e-16f" which specify an exponent but no decimal point. by Christopher Lamb · 17 years ago