- Dec 17, 2008
-
-
Ted Kremenek authored
llvm-svn: 61151
-
- Dec 16, 2008
-
-
Douglas Gregor authored
functions. They work except that name lookup within the default arguments needs to be deferred until the class definition is complete (see FIXME in the test). llvm-svn: 61059
-
- Dec 14, 2008
-
-
Ted Kremenek authored
llvm-svn: 61002
-
- Dec 11, 2008
-
-
Ted Kremenek authored
llvm-svn: 60864
-
- Dec 10, 2008
-
-
Ted Kremenek authored
llvm-svn: 60819
-
- Dec 09, 2008
-
-
Sebastian Redl authored
llvm-svn: 60763
-
- Dec 08, 2008
-
-
Sebastian Redl authored
llvm-svn: 60699
-
- Dec 02, 2008
-
-
Sebastian Redl authored
llvm-svn: 60425
-
Sebastian Redl authored
llvm-svn: 60413
-
- Nov 25, 2008
-
-
Nuno Lopes authored
llvm-svn: 60029
-
- Nov 20, 2008
-
-
Douglas Gregor authored
llvm-svn: 59735
-
- Nov 19, 2008
-
-
Douglas Gregor authored
being called to be converted to a reference-to-function, pointer-to-function, or reference-to-pointer-to-function. This is done through "surrogate" candidate functions that model the conversions from the object to the function (reference/pointer) and the conversions in the arguments. llvm-svn: 59674
-
Douglas Gregor authored
with function call syntax, e.g., Functor f; f(x, y); This is the easy part of handling calls to objects of class type (C++ [over.call.object]). The hard part (coping with conversions from f to function pointer or reference types) will come later. Nobody uses that stuff anyway, right? :) llvm-svn: 59663
-
Douglas Gregor authored
built-in operator candidates. Test overloading of '&' and ','. In C++, a comma expression is an lvalue if its right-hand subexpression is an lvalue. Update Expr::isLvalue accordingly. llvm-svn: 59643
-
Douglas Gregor authored
post-decrement, including support for generating all of the built-in operator candidates for these operators. C++ and C have different rules for the arguments to the builtin unary '+' and '-'. Implemented both variants in Sema::ActOnUnaryOp. In C++, pre-increment and pre-decrement return lvalues. Update Expr::isLvalue accordingly. llvm-svn: 59638
-
Ted Kremenek authored
llvm-svn: 59591
-
- Nov 18, 2008
-
-
Daniel Dunbar authored
suite with clang. llvm-svn: 59536
-
Ted Kremenek authored
llvm-svn: 59503
-
- Nov 17, 2008
-
-
Ted Kremenek authored
llvm-svn: 59457
-
- Nov 15, 2008
-
-
Ted Kremenek authored
llvm-svn: 59353
-
Sebastian Redl authored
Thanks to Doug for the review. Actual effects of mutable to follow. llvm-svn: 59331
-
- Nov 14, 2008
-
-
Daniel Dunbar authored
llvm-svn: 59272
-
- Nov 13, 2008
-
-
Daniel Dunbar authored
developing clang. llvm-svn: 59270
-
Ted Kremenek authored
llvm-svn: 59209
-
Ted Kremenek authored
llvm-svn: 59206
-
Ted Kremenek authored
llvm-svn: 59195
-
- Nov 11, 2008
-
-
Sebastian Redl authored
llvm-svn: 59042
-
- Nov 10, 2008
-
-
Douglas Gregor authored
llvm-svn: 59000
-
- Nov 09, 2008
-
-
Sebastian Redl authored
llvm-svn: 58932
-
- Nov 08, 2008
-
-
Sebastian Redl authored
Update C++ status to reflect parser capabilities for chapter 9 (classes). Slightly extend the class parser test. llvm-svn: 58909
-
Sebastian Redl authored
llvm-svn: 58907
-
- Nov 07, 2008
-
-
Cedric Venet authored
llvm-svn: 58867
-
Ted Kremenek authored
llvm-svn: 58864
-
Douglas Gregor authored
llvm-svn: 58862
-
Douglas Gregor authored
operators. For example, one can now write "x + y" where x or y is a class or enumeration type, and Clang will perform overload resolution for "+" based on the overloaded operators it finds. The other kinds of overloadable operators in C++ will follow this same approach. Three major issues remain: 1) We don't find member operators 2) Since we don't have user-defined conversion operators, we can't call any of the built-in overloaded operators in C++ [over.built]. 3) Once we've done the semantic checks, we drop the overloaded operator on the floor; it doesn't get into the AST at all. llvm-svn: 58821
-
- Nov 06, 2008
-
-
Douglas Gregor authored
operators in C++. Overloaded operators can be called directly via their operator-function-ids, e.g., "operator+(foo, bar)", but we don't yet implement the semantics of operator overloading to handle, e.g., "foo + bar". llvm-svn: 58817
-
- Nov 05, 2008
-
-
Ted Kremenek authored
llvm-svn: 58776
-
Douglas Gregor authored
Implicit declaration of destructors (when necessary). Extended Declarator to store information about parsed constructors and destructors; this will be extended to deal with declarators that name overloaded operators (e.g., "operator +") and user-defined conversion operators (e.g., "operator int"). llvm-svn: 58767
-
Douglas Gregor authored
for constructor initializations, e.g., class A { }; class B : public A { int m; public: B() : A(), m(17) { }; }; llvm-svn: 58749
-
- Nov 04, 2008
-
-
Daniel Dunbar authored
llvm-svn: 58713
-