Skip to content
  1. Oct 26, 2010
  2. Oct 25, 2010
    • Douglas Gregor's avatar
      Look through the address-of operator to find the function being · 59f16ed0
      Douglas Gregor authored
      called. Fixes another aspect of PR8314.
      
      llvm-svn: 117308
      59f16ed0
    • Douglas Gregor's avatar
      When we're calling a function that we know based on its K&R-style · 8e09a72f
      Douglas Gregor authored
      function definition, we should still use a prototype to type-check and
      convert the function arguments, if such a prototype exists. Fixes
      PR8314.
      
      llvm-svn: 117305
      8e09a72f
    • David Chisnall's avatar
      Only warn for mismatched types in Objective-C methods when they are... · b62d15c2
      David Chisnall authored
      Only warn for mismatched types in Objective-C methods when they are incompatible, not when they are simply different.  Now we test whether the difference in types breaks the principle of substitutability, rather than whether they are different.
      
      A common idiom in Objective-C is to provide a definition of a method in a subclass that returns a more-specified version of an object than the superclass.  This does not violate the principle of substitutability, because you can always use the object returned by the subclass anywhere that you could use the type returned by the superclass.  It was, however, generating warnings with clang, leading people to believe that semantically correct code was incorrect and requiring less accurate type specification and explicit down-casts (neither of which is a good thing to encourage).
      
      This change ensures that any method definition has parameter and return types that make it accept anything that something conforming to the declaration may pass and return something that the caller will expect, but allows stricter definitions.  
      
      llvm-svn: 117271
      b62d15c2
    • Chandler Carruth's avatar
      Improve the tracking of source locations for parentheses in constructor calls. · 0171815a
      Chandler Carruth authored
      This adds them where missing, and traces them through PCH. We fix at least one
      bug in the extents found by the Index library, and make a lot of refactoring
      tools which care about the exact formulation of a constructor call easier to
      write. Also some minor cleanups to more consistently follow the friend pattern
      instead of the setter pattern when rebuilding a serialized AST.
      
      Patch originally by Samuel Benzaquen.
      
      llvm-svn: 117254
      0171815a
  3. Oct 23, 2010
  4. Oct 22, 2010
  5. Oct 21, 2010
  6. Oct 20, 2010
  7. Oct 19, 2010
  8. Oct 18, 2010
Loading