- Nov 13, 2008
-
-
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
-
Douglas Gregor authored
llvm-svn: 58699
-
Ted Kremenek authored
llvm-svn: 58672
-
Ted Kremenek authored
llvm-svn: 58658
-
- Nov 03, 2008
-
-
Daniel Dunbar authored
Eric C, thanks! llvm-svn: 58634
-
- Nov 01, 2008
-
-
Chris Lattner authored
llvm-svn: 58545
-
Daniel Dunbar authored
llvm-svn: 58544
-
Daniel Dunbar authored
llvm-svn: 58542
-
- Oct 31, 2008
-
-
Ted Kremenek authored
llvm-svn: 58473
-
- Oct 30, 2008
-
-
Daniel Dunbar authored
llvm-svn: 58412
-
- Oct 29, 2008
-
-
Ted Kremenek authored
llvm-svn: 58369
-
- Oct 27, 2008
-
-
Ted Kremenek authored
llvm-svn: 58289
-
- Oct 25, 2008
-
-
Ted Kremenek authored
llvm-svn: 58125
-
- Oct 24, 2008
-
-
Daniel Dunbar authored
llvm-svn: 58119
-
- Oct 23, 2008
-
-
Ted Kremenek authored
llvm-svn: 58027
-
- Oct 22, 2008
-
-
Ted Kremenek authored
llvm-svn: 58005
-
Ted Kremenek authored
llvm-svn: 57981
-
- Oct 21, 2008
-
-
Ted Kremenek authored
llvm-svn: 57931
-
Ted Kremenek authored
llvm-svn: 57890
-
- Oct 20, 2008
-
-
Ted Kremenek authored
llvm-svn: 57808
-
- Oct 18, 2008
-
-
Ted Kremenek authored
llvm-svn: 57775
-
Ted Kremenek authored
llvm-svn: 57764
-
- Oct 08, 2008
-
-
Ted Kremenek authored
llvm-svn: 57303
-
- Oct 06, 2008
-
-
Ted Kremenek authored
llvm-svn: 57176
-
- Oct 04, 2008
-
-
Ted Kremenek authored
llvm-svn: 57045
-