Skip to content
  1. Feb 26, 2008
  2. Feb 23, 2008
  3. Feb 22, 2008
  4. Feb 21, 2008
  5. Feb 20, 2008
  6. Feb 19, 2008
  7. Feb 18, 2008
  8. Feb 16, 2008
  9. Feb 15, 2008
  10. Feb 09, 2008
  11. Feb 07, 2008
  12. Feb 02, 2008
  13. Jan 29, 2008
  14. Jan 28, 2008
  15. Jan 24, 2008
  16. Jan 21, 2008
    • Duncan Sands's avatar
      It turns out that in C++ it is legal to declare functions · 92a56b54
      Duncan Sands authored
      that return an opaque type by value, as long as you don't
      call it or provide a body (you can take the address of it).
      So it is wrong to insist that sret parameters not be an
      opaque*.  And I guess it is really up to codegen to complain
      if someone tries to call such a function.  I'm also removing
      the analogous check from byval parameters, since I don't
      see why we shouldn't allow them as long as no-one tries to
      call the function or give it a body.
      
      llvm-svn: 46216
      92a56b54
    • Duncan Sands's avatar
      Check that sret is only used on pointers to types · 262e54eb
      Duncan Sands authored
      with a size, like byval.
      
      llvm-svn: 46207
      262e54eb
Loading