- 723df24 Added missing IgnoreParens(). by Abramo Bagnara · 15 years ago
- 8786da7 Rewrite ComplexExprEvaluator::VisitCastExpr to use cast kinds, and fix by John McCall · 15 years ago
- 373920b Improve some comments, shrink FunctionType::ExtInfo, and fix a bug found by John McCall · 15 years ago
- e23cf43 Restore r121752 without modification. by John McCall · 15 years ago
- 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 15 years ago
- 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 15 years ago
- d093722 Variadic templates: extend Type, NestedNameSpecifier, TemplateName, by Douglas Gregor · 15 years ago
- 140a2bd Skip ParenType on function instantiations. by Abramo Bagnara · 15 years ago
- 6a57746 Reduce the number of builtin operator overload candidates added in certain by Chandler Carruth · 15 years ago
- 7b38198 Basic, Sema: add support for CUDA launch_bounds attribute by Peter Collingbourne · 15 years ago
- 2c2c8dd Sema: diagnose kernel functions with non-void return type by Peter Collingbourne · 15 years ago
- aee543a Move the functionality to mark all vtables of key functions as used within by Chandler Carruth · 15 years ago
- 6d69558 Finish cleaning up the static utility code for adding builtin operator overload by Chandler Carruth · 15 years ago
- 38ca8d1 Clean up the helpers used to compute the usual arithmetic conversions' result by Chandler Carruth · 15 years ago
- 3c69dc4 Add a comment to a helper function. by Chandler Carruth · 15 years ago
- 7b80b4b Sink the logic to suppress builtin operator overloads in the presence of by Chandler Carruth · 15 years ago
- abb7184 Reorder the cases in the switch to be more logically grouped (to my mind). If by Chandler Carruth · 15 years ago
- c140946 Remove the final goto from this switch making it explict which overload set is by Chandler Carruth · 15 years ago
- 32fe0d0 Fold away completely identical code with simple fallthrough. by Chandler Carruth · 15 years ago
- fe62274 Move and copy function calls around to remove the indirection through gotos by Chandler Carruth · 15 years ago
- daf55d3 Simplify the flow through the switch by explicitly listing the added overloads by Chandler Carruth · 15 years ago
- 6df868e Fix 80-column violations and reflowing some code to facilitate those fixes. by Chandler Carruth · 15 years ago
- 3a0f3ef Begin the refactoring of how builtin operators are added to the overload by Chandler Carruth · 15 years ago
- c78f684 Enhance my implementation of //rdar ://8747333 in r121597 to allow by Fariborz Jahanian · 15 years ago
- 88f5e9b Any property declared in a class extension might have user by Fariborz Jahanian · 15 years ago
- f40f0d5 Keep the source location of the selector in ObjCMessageExpr. by Argyrios Kyrtzidis · 15 years ago
- 42499f9 Do not assert on shifts of Neon polynomial types. by Bob Wilson · 15 years ago
- 3922ed0 Silence a few more uninitialized-value warnings by Douglas Gregor · 15 years ago
- 9f6f6a1 Do not substitute template types if template has dependent context by Peter Collingbourne · 15 years ago
- 9913d6e Fix a compiler warning. by Fariborz Jahanian · 15 years ago
- 075f8f1 Added ParenType type node. by Abramo Bagnara · 15 years ago
- 49f4e1c It's kindof silly that ExtQuals has an ASTContext&, and we can use that by John McCall · 15 years ago
- eb0eb49 Use TypeAlignment constant rather than fixed alignment of 8 by Douglas Gregor · 15 years ago
- 90f1450 Treat visibility on an enclosing namespace as a non-explicit source of by John McCall · 15 years ago
- db67e2f Bind the result of a property fetch to a temporary. by John McCall · 15 years ago
- bfe5788 Refactored/cleanedup ActOnFunctionDeclarator by Fariborz Jahanian · 15 years ago
- 7344921 Eliminate duplicate code completions for properties. by Douglas Gregor · 15 years ago
- 70c2335 Don't walk the translation unit context to produce protocol names when by Douglas Gregor · 15 years ago
- 40e1775 Fix PR8760: IndirectFieldDecl Type was not updated during template instantiation. by Francois Pichet · 15 years ago
- d954504 A typename specifier can end up referring to a unresolved using by Douglas Gregor · 15 years ago
- f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 15 years ago
- 241d558 Bump up property conversion earlier in the initialization process. Fixes by John McCall · 15 years ago
- f5fe292 Fix PR8720 by printing an error message with a substring that the gcc testsuite searches for. by Rafael Espindola · 15 years ago
- 9f71a8f PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and by Jay Foad · 15 years ago
- 6f18fca Kill FullExpr, as it was not, in fact, used anywhere in the code base. by John McCall · 15 years ago
- 53c374f Use Sema::MaybeCreateExprWithCleanups() only after we've checked for a NULL/invalid expression by Douglas Gregor · 15 years ago
- 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 15 years ago
- 143c7ac Objective-C pointer conversions to 'id' or qualified 'id' subsume by Douglas Gregor · 15 years ago
- 409fa9a Split out a function to do lvalue conversion on objects; this is basically by John McCall · 15 years ago
- 7e112c0 Remove a fixme which was fixed in a previous commit. by Argyrios Kyrtzidis · 15 years ago
- 40c2913 Do unary conversions on vararg arguments and *then* special-case float. by John McCall · 15 years ago
- 223ae5c Use Sema's MarkDeclarationReferenced, which takes care of templates, instead of calling Decl's setUsed directly. by Argyrios Kyrtzidis · 15 years ago
- f0b0ccc Use the source location of the parameter, when it makes sense, for diagnostics in HandleCleanupAttr. by Argyrios Kyrtzidis · 15 years ago
- 894aed9 Un-templatetize this method. It's definition is out of line in the .cpp file, by Chandler Carruth · 15 years ago
- 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 15 years ago
- 01b2e4e Clarify the logic for when to build an overloaded binop. In particular, by John McCall · 15 years ago
- 85515d6 First pass at implementing the intent of ANSI C DR106. by John McCall · 15 years ago
- 9ec9445 dyn_cast else unreachable -> cast by John McCall · 15 years ago
- 00eb3f9 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: by Francois Pichet · 15 years ago
- 74e40b7 Don't crash when initializing a subaggregate in C from a property r-value. by John McCall · 15 years ago
- 0e800c9 Remove some defensive calls to EmitLoadOfPropertyRefLValue that shouldn't by John McCall · 15 years ago
- abc56c7 When deciding whether to complain about the type of a boolean condition, use by John McCall · 15 years ago
- f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 15 years ago
- 0982136 Implement -cl-single-precision-constant by Peter Collingbourne · 15 years ago
- ae3038c Mark functions referenced by 'cleanup' attribute as used. Fixes rdar://8728293 by Argyrios Kyrtzidis · 15 years ago
- 74b2756 Diagnose when accessing property in a class method and by Fariborz Jahanian · 15 years ago
- 6c572f1 Fixed typo. by Abramo Bagnara · 15 years ago
- a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 15 years ago
- 722109c Add some warning messages about invalid use of common/nocommon attributes. by Eric Christopher · 15 years ago
- a3998bd When we're performing an explicit cast of some sort, don't complain by Douglas Gregor · 15 years ago
- fce5656 Do not change the size of LookupResult::Filter based on the NDEBUG by Douglas Gregor · 15 years ago
- a6cf1e7 Add support for the common and nocommon attributes. by Eric Christopher · 15 years ago
- a878cda Perform lvalue-to-rvalue at the end of an expression statement in C. by John McCall · 15 years ago
- 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 15 years ago
- de3deea Swap order of checking for compatible vector types. by Bob Wilson · 15 years ago
- 7e44e3f Make TypeLocBuilder an implementation detail of Sema. Nobody else should be using it by Douglas Gregor · 15 years ago
- 1ceee5c Sema/AST work for capturing copy init expression by Fariborz Jahanian · 15 years ago
- f48f367 80-col fixups. by Eric Christopher · 15 years ago
- da80f74 Improve our handling of cv-qualifiers in Objective-C pointer by Douglas Gregor · 15 years ago
- d11617f Improve the diagnostic when the fixed underlying type of a by Douglas Gregor · 15 years ago
- 0ae287a Restore the lvalue-to-rvalue conversion patch with a minimal fix. by John McCall · 15 years ago
- ced7671 Basic, Sema: add support for CUDA location attributes by Peter Collingbourne · 15 years ago
- 2600503 When unknown method is sent to a receiver of by Fariborz Jahanian · 15 years ago
- 26e10be Follow through references to catch returned stack addresses, local blocks, label addresses or references to temporaries, e.g: by Argyrios Kyrtzidis · 15 years ago
- 20fbe7c L-value to r-value conversion is not ready for prime-time. by John McCall · 15 years ago
- 67aba81 Such function decls,as objc's objc_msgSend, builtins in by Fariborz Jahanian · 15 years ago
- 7e48579 Introduce an r-value to l-value cast kind. I'm not promising anything by John McCall · 15 years ago
- 15d5c83 Fix bug in r120299 spotted by dgregor. by Nico Weber · 15 years ago
- 9b4b9d6 Fix another case of giving the wrong value kind to a dependent cast to by John McCall · 15 years ago
- d976ca4 Revert r120331 since it causes spurious warnings and a possible assertion hit when self-host. by Argyrios Kyrtzidis · 15 years ago
- 8b2f01b Emit warnings if we are returning a reference to a local temporary. by Argyrios Kyrtzidis · 15 years ago
- 08e41a6 Always use a function's decl context when building default arguments. Fixes http://http://llvm.org/pr8479. by Nico Weber · 15 years ago
- 8a72621 Revert r120063, it was wrong. by John McCall · 15 years ago
- 7ff776e Revert parts of r120266 that I did not mean to commit by Nico Weber · 15 years ago
- 6bb4dcb Minor whitespace and comment fixes. No functionality change. by Nico Weber · 15 years ago
- f978000 Allow access to non-static members without an object in sizeof expressions, in C++0x. Patch by Jakub Wieczorek. by Sebastian Redl · 15 years ago
- a21e06c For internal consistency's sake, compute the value kind of a dependent cast by John McCall · 15 years ago
- 2a5f99e Tie DefineVTablesUsed() in with recursive function instantiation so that we emit by Nick Lewycky · 15 years ago
- 7eb0a9e Switch a lot of call-sites over to using the new value-kind calculations. by John McCall · 15 years ago
- fe4ea55 Redeclarations of using declarations are not okay in function scopes. by John McCall · 15 years ago