|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | a typo:
t.c:1:7: error: invalid '==' at end of declaration; did you mean '='?
int x == 0;
      ^~
      =
Implements rdar://8488464.
llvm-svn: 116035 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | for member functions. + Fixit.
Example: 
class A {
   void A::foo(); //warning: extra qualification on member 'foo'
};
llvm-svn: 115347 | 
| | 
| 
| 
| | llvm-svn: 113324 | 
| | 
| 
| 
| 
| 
| | member initializers in a C++ constructor. Fixes <rdar://problem/7796492>.
llvm-svn: 113199 | 
| | 
| 
| 
| 
| 
| | files with the additional suffix in the middle.
llvm-svn: 102230 | 
| | 
| 
| 
| 
| 
| 
| | correction find names when a call failed. Fixes
<rdar://problem/7853795>.
llvm-svn: 101278 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | that was present in a prior declaration, emit a warning rather than a
hard error (which we did before, and still do with mismatched
exception specifications). Moreover, provide a fix-it hint with the
throw() clause that should be added, e.g.,
t.C:10:7: warning: 'operator new' is missing exception specification
      'throw(std::bad_alloc)'
void *operator new(unsigned long sz)
      ^
                                     throw(std::bad_alloc)
As part of this, disable the warning when we're missing an exception
specification on operator new, operator new[], operator delete, or
operator delete[] when exceptions are turned off (-fno-exceptions).
Fixes PR5957.
llvm-svn: 99388 | 
| | 
| 
| 
| 
| 
| 
| | a test for access declarations and remove a (broken) test for removal
of default arguments.
llvm-svn: 95032 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | - This is designed to make it obvious that %clang_cc1 is a "test variable"
   which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it
   can be useful to redefine what gets run as 'clang -cc1' (for example, to set
   a default target).
llvm-svn: 91446 | 
| | 
| 
| 
| | llvm-svn: 88758 | 
| | 
| 
| 
| 
| 
| | has a defualt argument then add a fixit hint that removes the default argument. Fixes PR5444.
llvm-svn: 86659 | 
|  | llvm-svn: 68325 |