- 2c78b87 Change Lexer::MeasureTokenLength to take a LangOptions reference. by Chris Lattner · 16 years ago
- 12bac25 Diagnose properties which have no implementations; by Fariborz Jahanian · 16 years ago
- b90bb00 Set alignment on __cstring metadata variables to 1 (matching llvm-gcc). by Daniel Dunbar · 16 years ago
- dd13198 Avoid use of magic \01 prefix when unneeded. by Daniel Dunbar · 16 years ago
- 57d5cee Comment fix. by Daniel Dunbar · 16 years ago
- f4382f5 Make the implicit-int handling error recovery stuff handle C++ by Chris Lattner · 16 years ago
- 17fc223 Add PCH support for PredefinedExpr and FloatingLiteral expressions by Douglas Gregor · 16 years ago
- e40c295 refactor "implicit int error recovery" code out of by Chris Lattner · 16 years ago
- 0b74891 PCH support for a few very, very simple kinds of expressions. Hook up by Douglas Gregor · 16 years ago
- b6645dd Fix a regression in a previous patch that broke implicit by Chris Lattner · 16 years ago
- 1fc5194 Fix <rdar://problem/6252084> [sema] jumps into Obj-C exception blocks should be disallowed. by Steve Naroff · 16 years ago
- 44e79b1 remove dead enum by Chris Lattner · 16 years ago
- cbb8fc1 Fix PR3988: extern inline functions get strong symbol definitions in by Chris Lattner · 16 years ago
- 0f90294 Do not dead code strip global meta-data objects. by Fariborz Jahanian · 16 years ago
- aa771a8 Fixup whitespacing. by Mike Stump · 16 years ago
- f87b3df temporarily revert r69046 by Chris Lattner · 16 years ago
- c158306 Fix comment. by Daniel Dunbar · 16 years ago
- c519743 implement some sema for gnuc_inline attribute. Reject always_inline and no_inline on objc methods. by Chris Lattner · 16 years ago
- 5f4307b Support code generation of 'this' exprs by Anders Carlsson · 16 years ago
- 0fab49f Literal value calculation isn't likely to overflow on targets having int as 32 or less. Fixing the assert as it otherwise triggers for PIC16 which as i16 as int. by Sanjiv Gupta · 16 years ago
- 86daeee implement codegen support for __attribute((__gnuc_inline__)), by Chris Lattner · 16 years ago
- 26e2554 recognize the gnuc_inline attribute. by Chris Lattner · 16 years ago
- f807fe0 When building a PCH file, don't perform end-of-translation-unit by Douglas Gregor · 16 years ago
- d824c9c ASTContext::mergeTypes(): Loosen up the type checking for 'Class' (treating it like 'id'). by Steve Naroff · 16 years ago
- 7c65e99 Refactor how attributes are set on values. by Daniel Dunbar · 16 years ago
- 55d6f50 Split SetGlobalValueAttributes into definition/declaration halves. by Daniel Dunbar · 16 years ago
- 7dbd819 Rename (one) SetFunctionAttributes to SetLLVMFunctionAttributes to by Daniel Dunbar · 16 years ago
- 529d7d2 Reduce indentation, no functionality change. by Daniel Dunbar · 16 years ago
- dbb5a37 defer emission of always_inline, extern_inline, and inline functions (when by Chris Lattner · 16 years ago
- d5ee667 give always_inline functions internal linkage. If they cannot be by Chris Lattner · 16 years ago
- d9d049a set the linkage of an inline function according to its language rules. by Chris Lattner · 16 years ago
- b97b692 Add a comment on SetGlobalValueAttributes. by Daniel Dunbar · 16 years ago
- 44b0bc0 add a new enum type for linkage, no functionality change. by Chris Lattner · 16 years ago
- 04d4078 Clean up handling of visibility. by Daniel Dunbar · 16 years ago
- 9f94279 reduce indentation, no functionality change. by Chris Lattner · 16 years ago
- df102fc do not set visibility on "private" or "available externally" linkage objects. by Chris Lattner · 16 years ago
- 959875a Offer a fixit hint for our warning about tokens at the end of a directive: by Chris Lattner · 16 years ago
- 35410d5 Fix the #import / #include_next "extra tokens at end of #foo directive" by Chris Lattner · 16 years ago
- f0c9083 Use hasAttr instead of getAttr for conditionals. by Mike Stump · 16 years ago
- 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 16 years ago
- b286a78 Add VarDecl::getStorageClassSpecifierString (StorageClass -> const char*). by Daniel Dunbar · 16 years ago
- f33651c Fixup CodeGen for __weak __block variables. Radar 6756266 by Mike Stump · 16 years ago
- bb3fde3 Change dyn_cast<> to isa<>. Pointed out by Anders (thanks). by Steve Naroff · 16 years ago
- fdd0172 When writing a PCH file, keep track of all of the non-static, by Douglas Gregor · 16 years ago
- ab76d45 Fix crasher in ASTContext::getObjCEncodingForMethodDecl(). by Steve Naroff · 16 years ago
- 1028bc6 Partial PCH support for FileScopeAsmDecl and BlockDecl. Both require by Douglas Gregor · 16 years ago
- 3a2f7e4 PCH support for functions and their parameters. by Douglas Gregor · 16 years ago
- 0f59312 Minor work related to removing the assumption that value initialization by Eli Friedman · 16 years ago
- 8a3e0b1 Minor simplification. by Eli Friedman · 16 years ago
- a31feca PR3461: reject initializer for incomplete type. Based on patch by Tim by Eli Friedman · 16 years ago
- 8c70006 PCH support for record decls/types and their fields. Now that we can by Douglas Gregor · 16 years ago
- b11fa0d Update to use hasAttr() instead of getAttr(). - No functionality change. by Daniel Dunbar · 16 years ago
- 2d41cc1 Print the number (and percentage) of identifiers read from the PCH file as part of its statistics by Douglas Gregor · 16 years ago
- b4e715b Introduce PCH (de-)serialization for most compound types, excluding by Douglas Gregor · 16 years ago
- fd94262 Move/update recent FIXME (wrt UTF-8 checking for ObjC @-strings). by Steve Naroff · 16 years ago
- 29da66e In objc2's None-Fragile ABI, one cannot use the super class ivar for by Fariborz Jahanian · 16 years ago
- aa4a756 Fixed crasher in <rdar://problem/6780904> [irgen] Assertion failed: (Result == conversionOK && "UTF-8 to UTF-16 conversion failed"), function GetAddrOfConstantCFString, file CodeGenModule.cpp, line 1063. by Steve Naroff · 16 years ago
- 0a2b45e Add PCH support for enumerations and enumerators. by Douglas Gregor · 16 years ago
- 283a062 Use the new guard variable mangling function and get rid of the old code. by Anders Carlsson · 16 years ago
- 41aa8c1 Add support for mangling guard variables. by Anders Carlsson · 16 years ago
- 8745416 Change diagnostic as a result of researching <rdar://problem/6779809> missing interface name in "error: cannot declare variable inside a class, protocol or category ''. by Steve Naroff · 16 years ago
- 8533bd5 Fix assertion failure in PTH when tokens followed a closing #endif. by Daniel Dunbar · 16 years ago
- ff0a987 Make the reading of the line table from a PCH file more robust against by Douglas Gregor · 16 years ago
- bd94500 Include the SourceManager's line table in the PCH file. We can now by Douglas Gregor · 16 years ago
- d4f77aa Factor the internals of SourceManager (specially, LineTableInfo) into a separate Internals header. No functionality change by Douglas Gregor · 16 years ago
- 841b53c Make the selection of type declarations in Sema::getTypeName by Douglas Gregor · 16 years ago
- c1f9d82 implement the microsoft/gnu "__COUNTER__" macro: rdar://4329310 by Chris Lattner · 16 years ago
- 1721a2d Improve error recovery for calls, fixing: by Chris Lattner · 16 years ago
- 16ede0e fix PR3932: [ObjC]Type defined as 'id' is not recognized as a valid object type. by Chris Lattner · 16 years ago
- 93c4945 if we already know that a decl is invalid in an @catch, don't verify its type. by Chris Lattner · 16 years ago
- b6688e0 fix some out of date comments pointed out by Sebastian by Chris Lattner · 16 years ago
- 51172d1 fix a comment typo Sebastian noticed. by Chris Lattner · 16 years ago
- c83c27a add support for handling C++'0x unified initializer syntax by Chris Lattner · 16 years ago
- 8129edb Fix some C++ error recovery problems in init declarator parsing by Chris Lattner · 16 years ago
- 6491f47 fix another case that assumed that GetTypeForDeclarator would never return null. by Chris Lattner · 16 years ago
- 33c6ebe mark the declspec as invalid when we recover instead of forcing to int, by Chris Lattner · 16 years ago
- 798d569 fix code that incorrectly assumed that GetTypeForDeclarator cannot return null. by Chris Lattner · 16 years ago
- 4c97d76 Diagnose invalid uses of tagged types with a missing tag. For example, in: by Chris Lattner · 16 years ago
- 5186872 fix a valgrind problem I noticed while developing another patch, by Chris Lattner · 16 years ago
- c199ab3 Implement the first set of changes for PR3963 and rdar://6759604, by Chris Lattner · 16 years ago
- 2040169 add a new isNull() method to DeclGroupRef. by Chris Lattner · 16 years ago
- bfc861e a few cleanups to StatementCreatesScope: unnest the whole thing, by Chris Lattner · 16 years ago
- e2b6833 Parse deleted member functions. Parsing member declarations goes through a different code path that I forgot previously. by Sebastian Redl · 16 years ago
- 2c4463f Fix rdar://6770142 - Class and qualified id's are compatible, just like by Chris Lattner · 16 years ago
- 58fe03b Fix rdar://6771034: don't warn on use of forward declared protocol in protocol by Chris Lattner · 16 years ago
- 312531a implement rdar://6780761, making sema reject some code that otherwise by Chris Lattner · 16 years ago
- d82df3a Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 16 years ago
- f4a72b0 add a ppcallback hook for macro definitions. by Chris Lattner · 16 years ago
- 7356a31 now that we have an identifier table in the PCH file, finish hooking up by Chris Lattner · 16 years ago
- d1e0f5a improve location info for property stuff. In a property like this: by Chris Lattner · 16 years ago
- 3aff919 improve the 'conflicting types' diagnostics to include correct location info, now by Chris Lattner · 16 years ago
- 7db638d Set proper location info on objc method arguments. by Chris Lattner · 16 years ago
- f97e8fa simplify code to use adjustParameterType, apply objc arg attributes by Chris Lattner · 16 years ago
- 9097af1 fix blocks to reject objc interfaces returned by value. Also, by Chris Lattner · 16 years ago
- bb74982 diagnose attempts to return objc interfaces by-value from C functions. by Chris Lattner · 16 years ago
- 2dd979f Improve the 'cannot pass objc interface by value' diagnostic: by Chris Lattner · 16 years ago
- e294d3f change the interface to ActOnMethodDeclaration to pass down argument by Chris Lattner · 16 years ago
- da0895d Minor refactoring of my last patch. by Fariborz Jahanian · 16 years ago
- 8f823d2 sink abstract typedefs like Action::ExprTy from the Action class by Chris Lattner · 16 years ago
- 3c304bd add some #includes for better compatibility with gcc 4.4, by Chris Lattner · 16 years ago