Skip to content
Snippets Groups Projects
  1. Nov 05, 2017
  2. Oct 26, 2017
  3. Aug 17, 2017
  4. May 19, 2016
  5. Mar 18, 2016
    • Steven Watanabe's avatar
      Fix printing of anonymous struct typedefs. · 7d8134a1
      Steven Watanabe authored
      clang -cc1 -ast-print put the struct
      definition in the wrong place, like this:
      
        struct {} typedef S;
      
      The reason that this happens is that the printing code
      first prints the struct definition, and then tells the next
      declaration to leave out the type. This behavior
      is correct for simple variable declarations, but fails for
      typedefs (or extern, mutable, etc).
      
      The patch address this problem by skipping the struct
      declaration when we first see it, and then telling the first
      subsequent declaration that it needs to print out the full
      struct definition.
      
      Differential Revision: http://reviews.llvm.org/D17285
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263836 91177308-0d34-0410-b5e6-96231b3b80d8
      7d8134a1
  6. Feb 15, 2016
  7. Dec 16, 2015
  8. Aug 05, 2015
  9. Aug 13, 2014
  10. Apr 02, 2014
  11. Mar 18, 2014
  12. Dec 12, 2013
  13. Oct 09, 2013
  14. May 10, 2013
    • Hans Wennborg's avatar
      Add support for __wchar_t in -fms-extensions mode. · 15f92bad
      Hans Wennborg authored
      MSVC provides __wchar_t. This is the same as the built-in wchar_t type
      from C++, but it is also available with -fno-wchar and in C.
      
      The commit changes ASTContext to have two different types for this:
      
        - WCharTy is the built-in type used for wchar_t in C++ and __wchar_t.
      
        - WideCharTy is the type of a wide character literal. In C++ this is
          the same as WCharTy, and in C  it is an integer type compatible with
          the type in <stddef.h>.
      
      This fixes PR15815.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181587 91177308-0d34-0410-b5e6-96231b3b80d8
      15f92bad
  15. May 04, 2013
  16. May 03, 2013
  17. Dec 20, 2012
  18. Dec 04, 2012
  19. Dec 01, 2012
  20. Oct 17, 2012
  21. Aug 21, 2012
  22. Aug 16, 2012
  23. Nov 03, 2011
  24. Sep 28, 2011
  25. Jul 23, 2011
  26. Jul 22, 2011
  27. Jul 20, 2011
  28. Jun 16, 2011
  29. Apr 15, 2011
  30. Mar 16, 2011
  31. Nov 18, 2010
  32. Apr 05, 2010
  33. Mar 10, 2010
  34. Sep 09, 2009
Loading