- 358559d Introduce a new libclang function, clang_getCursorDisplayName(), which by Douglas Gregor · 14 years ago
- 3f0fee3 Teach clang_getCursorType() about base specifiers and other references by Douglas Gregor · 14 years ago
- 5e9888c When we insert a category (or class extension) into an interface, mark by Douglas Gregor · 14 years ago
- 1b0f7af Provide proper source location and range information for C++ base by Douglas Gregor · 14 years ago
- 77424bc Implement chained PCH support for the macro definitions stored within by Douglas Gregor · 14 years ago
- 42499be Use ParseObjCSelectorPiece for parsing getter and setter names in @property declarations. Fixes PR8169. by Anders Carlsson · 14 years ago
- 305ac49 Rename a test in preparation for fixing PR8169. by Anders Carlsson · 14 years ago
- 81134ad Don't add an imported function into its lexical context until *after* by Douglas Gregor · 14 years ago
- d78a019 Mark explict methods as explict in debug info. by Devang Patel · 14 years ago
- 946928f diagnose errors when a builtin that require constant arguments don't have them. by Chris Lattner · 14 years ago
- 011cf89 Doug's feedback by Gabor Greif · 14 years ago
- 28164ab Factor out enumerator APSInt adjustment into by Gabor Greif · 14 years ago
- e09f2e9 Restore test. Is for //rdar://8493239 by Fariborz Jahanian · 14 years ago
- c71d8eb Better diagnostic for superfluous scope specifier inside a class definition for member functions. + Fixit. by Francois Pichet · 14 years ago
- db1314e Teach clang_getCursorReferenced() about Objective-C property reference by Douglas Gregor · 14 years ago
- 9f59234 Extend libclang with an API that determines, given a C++ virtual by Douglas Gregor · 14 years ago
- dab60ad Implement the C++0x "trailing return type" feature, e.g., by Douglas Gregor · 14 years ago
- 0e97bcb Added generating CFGAutomaticObjDtors for exception variable in catch statement. by Marcin Swiderski · 14 years ago
- 47575f1 Added generating CFGAutomaticObjDtors for init statement, condition variable and implicit scope in for statement. by Marcin Swiderski · 14 years ago
- 8ae6058 dded generating CFGAutomaticObjDtors for condition variable and implicit scopes in switch statement. by Marcin Swiderski · 14 years ago
- 05adedc Added generating CFGAutomaticObjDtors for condition variable and implicit scopes in while and do statements. by Marcin Swiderski · 14 years ago
- ee9b0ba When an identifier that has a macro definition in the original PCH by Douglas Gregor · 14 years ago
- 073a45f Remove test until further notice. by Fariborz Jahanian · 14 years ago
- 04e046c Added generating CFGAutomaticObjDtors for condition variable and implicit scopes in if statement. by Marcin Swiderski · 14 years ago
- 2f8c898 Fix test. by Fariborz Jahanian · 14 years ago
- fcb72ac Added: by Marcin Swiderski · 14 years ago
- 9747739 Output debug info. for ivars declared in class by Fariborz Jahanian · 14 years ago
- 87e3432 Add test case I forgot for r115159 (support implicit includes along with PCH). by Argyrios Kyrtzidis · 14 years ago
- d47e262 Clang part of MMX rewrite (goes with 115243). by Dale Johannesen · 14 years ago
- 24f9cab Rewriting array element type of qualified-id. Fixes rdra://8475819. by Fariborz Jahanian · 14 years ago
- 6123874 Tweak nil receiver checker to not warning about 64-bit return values. by Ted Kremenek · 14 years ago
- aca745b Attach aritifical attribute with implicit parameters. Radar 8493141. by Devang Patel · 14 years ago
- 10a7a6a Emit method access specifier. Radar 8490416. by Devang Patel · 14 years ago
- fbb6fad When performing template argument deduction of a function template by Douglas Gregor · 14 years ago
- 549ee4b Test case for r115067. by Devang Patel · 14 years ago
- dd0cb22 Add support for attribute((naked)), patch by Zoxc on cfe-commits! by Daniel Dunbar · 14 years ago
- 1b39820 Fix handling of dependent nested namespace specifiers in UsingDecls by Douglas Gregor · 14 years ago
- 54d56a5 Frontend/XML: Add support for printing nested structures, patch by Martin Vejnár! by Daniel Dunbar · 14 years ago
- 593770b Define _Bool, bool, true, and false macros in <stdbool.h> when we're by Douglas Gregor · 14 years ago
- 6229c8e enhance tentative parsing to handle ms extensions, patch by Martin Vejnar! by Chris Lattner · 14 years ago
- 4949927 Add test case for <rdar://problem/8452791> (fixed in r114392). by Ted Kremenek · 14 years ago
- c5be7b0 vla expressions used in __typeof__ must be evaluated. Fixes rdar://8476159. by Fariborz Jahanian · 14 years ago
- 2cf9d65 Centralize the management of CXXRecordDecl::DefinitionData's Empty bit by Douglas Gregor · 14 years ago
- 8577364 When we have two identifiers in a row in Objective-C, make sure to by Douglas Gregor · 14 years ago
- b335872 Don't warn with -Wbool-conversions if the user wrote an explicit cast like "(void *)false". by Argyrios Kyrtzidis · 14 years ago
- 1a18600 Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://8483139. by Argyrios Kyrtzidis · 14 years ago
- ff3a078 Patch to support transparent_union arguments by Fariborz Jahanian · 14 years ago
- c956b6e Correctly set "explicit template instantiation" kind on inner structs of templates whose explicit instantiation is first declared and then defined. by Nico Weber · 14 years ago
- b4a88ef Let lit give helpful advice if 'make test' was not run yet. by Nico Weber · 14 years ago
- 60acea4 Issue warning for trivial cases of nonnull attributes by Fariborz Jahanian · 14 years ago
- db148be Copying result of object property reference expression by Fariborz Jahanian · 14 years ago
- 5cadfab Fixed isConstantInitializer for __builtin_choose_expr. by Abramo Bagnara · 14 years ago
- 301669b Lexer: Implement GCC's version of pragma message. by Michael J. Spencer · 14 years ago
- 3911a1a Fix a NYI in IRGen which was due to incorrect AST by Fariborz Jahanian · 14 years ago
- 76dc889 When setting the globally-visible declarations for a particular by Douglas Gregor · 14 years ago
- 37bf9d2 Allow the use of C++0x deleted functions as an extension in C++98. by Anders Carlsson · 14 years ago
- 07acdf4 Fix rewriting of property declared in @protocol's. Fixed //rdar://8472487. by Fariborz Jahanian · 14 years ago
- 745da3a Patch implements passing arrays to functions expecting vla. Implements pr7827. by Fariborz Jahanian · 14 years ago
- 1909dfd Remove this test for now until I figure out how to get it to work with c-index-test in a portable way. by Ted Kremenek · 14 years ago
- 84906b2 Pass -fobjc-nonfragile-abi2 in test. by Ted Kremenek · 14 years ago
- fc320e3 Since this test depends on default ivar synthesis, specify the target triple. This hopefully unbreaks the buildbot by Ted Kremenek · 14 years ago
- 4e42972 Update comment in test with reference to bug report. by Ted Kremenek · 14 years ago
- 2a6af6b Default synthesized ivars don't really have a location in the source. Using the location of the @implementation by Ted Kremenek · 14 years ago
- 52779fb Synchronize globally-cached code completion results with the results by Douglas Gregor · 14 years ago
- e3b159c When warning about comparing an unsigned int to being >= 0, don't issue a warning if the zero value was an by Ted Kremenek · 14 years ago
- 0d22d22 Add test case for c-index-test showing that @property declarations added in class extensions don't get reported by Ted Kremenek · 14 years ago
- 4a2e9ea For properties declared in a @protocol and redeclared in a class extension, use the class extension by Ted Kremenek · 14 years ago
- 2b64239 Fix bogus compiler errors when declaring anonymous union, outside a class, with by Argyrios Kyrtzidis · 14 years ago
- 47423bd Don't crash on _Imaginary. by Argyrios Kyrtzidis · 14 years ago
- 7d8eb51 Use -emit-llvm-only in the test. by Argyrios Kyrtzidis · 14 years ago
- 7bb1d23 Tweak test to pass -ffreestanding, to avoid platform dependent header issues. by Daniel Dunbar · 14 years ago
- f554b1c IRgen/ABI/ARM: Return large vectors in memory. by Daniel Dunbar · 14 years ago
- 8aa87c7 IRgen/ABI/ARM: Trust the backend to pass vectors correctly for the given ABI. by Daniel Dunbar · 14 years ago
- b4a9aec Testcase for r114585. by Devang Patel · 14 years ago
- 78a916e Implement -Wpadded and -Wpacked. by Argyrios Kyrtzidis · 14 years ago
- 398e6b9 update a bunch of tests that are using the x86 backend instead of grepping IR :( by Chris Lattner · 14 years ago
- 4f20944 fix the rest of rdar://8461279 - clang miscompiles address-space qualified atomics by Chris Lattner · 14 years ago
- 780a2eb same bug as before, this time with __sync_val_compare_and_swap. by Chris Lattner · 14 years ago
- f2b9527 fix __sync_bool_compare_and_swap to work with address-space qualified types. by Chris Lattner · 14 years ago
- c7f78c7 filecheckize. by Chris Lattner · 14 years ago
- f443570 Fixes an IRgen ICE due to cast of null pointer to a vla type (fixes pr7827). by Fariborz Jahanian · 14 years ago
- a054fb4 Correctly register the class extension as the lexical DeclContext for ObjC methods declared with @property in class extensions. by Ted Kremenek · 14 years ago
- 0b78710 IRgen for gnu extension's conditional lvalue expression by Fariborz Jahanian · 14 years ago
- 8254aa6 For ObjCPropertyDecls in class extensions, use the class extension as the lexical DeclContext for newly created by Ted Kremenek · 14 years ago
- 6f942b2 Add code completion for C++ constructors wherever we see the class (or by Douglas Gregor · 14 years ago
- ff8819b Do not warn with -Wuninitialized when the member is used in a sizeof or address-of expression. by Argyrios Kyrtzidis · 14 years ago
- b9d7757 When providing code completions for an argument in an Objective-C by Douglas Gregor · 14 years ago
- aa3b57e Implements in IRgen gnu extensions missing LHS for by Fariborz Jahanian · 14 years ago
- 08f43cd Code completion has no reason to prefer values over types, especially by Douglas Gregor · 14 years ago
- 6155d73 Check in support for OpenCL conditional operator on vector types. by Nate Begeman · 14 years ago
- d475aad Get rid of the lame attempt to prioritize "void" functions at by Douglas Gregor · 14 years ago
- b05496d Tweak priorities for some types and macros: by Douglas Gregor · 14 years ago
- 66b7fbf Introduce a simple, substitution-based compression scheme for USRs, so by Douglas Gregor · 14 years ago
- ea844f3 Check that an overloaded function name, when used by the ! operator, by Douglas Gregor · 14 years ago
- 1b2ad2f Revert r114316, -Wunused-value enabled by default was intended. by Argyrios Kyrtzidis · 14 years ago
- 6dff228 Make -Wunused-value off by default, matching GCC. Fixes rdar://7126194. by Argyrios Kyrtzidis · 14 years ago
- 355a9fe Implement -Wunused-label. by Argyrios Kyrtzidis · 14 years ago
- d2827af Warn when an expression result in a LabelStmt is unused. by Argyrios Kyrtzidis · 14 years ago
- dc5ea09 Fixes IRgen bug in objc++ reference binding of a by Fariborz Jahanian · 14 years ago
- 1fb019b Problem with gnu conditional extension with missing by Fariborz Jahanian · 14 years ago