- Jun 03, 2009
-
-
Argyrios Kyrtzidis authored
llvm-svn: 72747
-
- Jun 02, 2009
-
-
Eli Friedman authored
llvm-svn: 72726
-
- Jun 01, 2009
-
-
Eli Friedman authored
definition variadic. I'm not completely sure it's legal, but the standard can be interpreted as making it legal, and gcc seems to think it's legal, so I didn't add an extension warning. llvm-svn: 72689
-
- May 31, 2009
-
-
Anders Carlsson authored
Make sure to copy back arguments that can be changed by FindAllocationOverload. This fixes placement new. (Sebastian, please review). llvm-svn: 72673
-
Anders Carlsson authored
Fix an off by one error when trying to perform copy initialization of operator new and operator delete arguments. Sebastian, please review. llvm-svn: 72670
-
Chris Lattner authored
an error to being a warning that defaults to error. If you want this to be a warning, you have to explicitly pass -Winvalid-noreturn to clang to map it back to a warning. llvm-svn: 72669
-
Sebastian Redl authored
llvm-svn: 72664
-
Eli Friedman authored
string. llvm-svn: 72663
-
Douglas Gregor authored
we have the basics of declaring and storing class template partial specializations, matching class template partial specializations at instantiation time via (limited) template argument deduction, and using the class template partial specialization's pattern for instantiation. This patch is enough to make a simple is_pointer type trait work, but not much else. llvm-svn: 72662
-
Anders Carlsson authored
llvm-svn: 72647
-
Anders Carlsson authored
llvm-svn: 72644
-
Anders Carlsson authored
llvm-svn: 72643
-
Anders Carlsson authored
llvm-svn: 72642
-
- May 30, 2009
-
-
Anders Carlsson authored
llvm-svn: 72641
-
Anders Carlsson authored
llvm-svn: 72640
-
Anders Carlsson authored
llvm-svn: 72638
-
Anders Carlsson authored
llvm-svn: 72634
-
Anders Carlsson authored
llvm-svn: 72633
-
Anders Carlsson authored
llvm-svn: 72632
-
Anders Carlsson authored
Remove VarDecl from CheckInitializerTypes now that CXXConstructExpr doesn't need to take a VarDecl anymore. (It still does, but it won't for long) llvm-svn: 72630
-
Anders Carlsson authored
Add Sema::MaybeBindToTemporary which takes an expression and (if needed) wraps it in a CXXBindTemporaryExpr. Use this when creating CXXTemporaryObjectExprs. llvm-svn: 72629
-
Anders Carlsson authored
llvm-svn: 72627
-
Anders Carlsson authored
llvm-svn: 72624
-
Douglas Gregor authored
llvm-svn: 72616
-
Douglas Gregor authored
using namespace std::debug; Extended UsingDirectiveDecl to store the nested-name-specifier that precedes the nominated namespace. llvm-svn: 72614
-
Anders Carlsson authored
Add a member lookup criteria constructor for searching for overridden virtual member functions. Use this instead of regular name lookup when checking for overriding functions so we will see declarations that would otherwise be hidden. Fixes 6902298. llvm-svn: 72601
-
Douglas Gregor authored
walks through DeclContexts properly, and prints more of the information available in the AST. The functionality is still available via -ast-print, -ast-dump, etc., and also via the new member functions Decl::dump() and Decl::print(). llvm-svn: 72597
-
Anders Carlsson authored
llvm-svn: 72594
-
- May 29, 2009
-
-
Douglas Gregor authored
printing logic to help customize the output. For now, we use this rather than a special flag to suppress the "struct" when printing "struct X" and to print the Boolean type as "bool" in C++ but "_Bool" in C. llvm-svn: 72590
-
Eli Friedman authored
hadError (suppressing future diagnostics) if we didn't print an error. llvm-svn: 72588
-
Eli Friedman authored
VLAs. llvm-svn: 72587
-
Douglas Gregor authored
template instantiation. This helps reduce our stack footprint when performing deep template instantiations. llvm-svn: 72582
-
Eli Friedman authored
handle the construct in question correctly. llvm-svn: 72581
-
Sebastian Redl authored
llvm-svn: 72580
-
Mike Stump authored
a vla is used. llvm-svn: 72575
-
Sebastian Redl authored
llvm-svn: 72571
-
Douglas Gregor authored
llvm-svn: 72570
-
Douglas Gregor authored
instantiation of tags local to member functions of class templates (and, eventually, function templates) works when the tag is defined as part of the decl-specifier-seq, e.g., struct S { T x, y; } s1; Also, make sure that we don't try to default-initialize a dependent type. llvm-svn: 72568
-
Eli Friedman authored
to the DeclGroup. llvm-svn: 72559
-
Douglas Gregor authored
specifier resulted in the creation of a new TagDecl node, which happens either when the tag specifier was a definition or when the tag specifier was the first declaration of that tag type. This information has several uses, the first of which is implemented in this commit: 1) In C++, one is not allowed to define tag types within a type specifier (e.g., static_cast<struct S { int x; } *>(0) is ill-formed) or within the result or parameter types of a function. We now diagnose this. 2) We can extend DeclGroups to contain information about any tags that are declared/defined within the declaration specifiers of a variable, e.g., struct Point { int x, y, z; } p; This will help improve AST printing and template instantiation, among other things. 3) For C99, we can keep track of whether a tag type is defined within the type of a parameter, to properly cope with cases like, e.g., int bar(struct T2 { int x; } y) { struct T2 z; } We can also do similar things wherever there is a type specifier, e.g., to keep track of where the definition of S occurs in this legal C99 code: (struct S { int x, y; } *)0 llvm-svn: 72555
-