Skip to content
  1. Jan 02, 2014
  2. Jan 01, 2014
    • Alp Toker's avatar
      Eliminate UnaryTypeTraitExpr · 95e7ff2e
      Alp Toker authored
      Remove UnaryTypeTraitExpr and switch all remaining type trait related handling
      over to TypeTraitExpr.
      
      The UTT/BTT/TT enum prefix and evaluation code is retained pending further
      cleanup.
      
      This is part of the ongoing work to unify type traits following the removal of
      BinaryTypeTraitExpr in r197273.
      
      llvm-svn: 198271
      95e7ff2e
    • Alp Toker's avatar
      ExpectAndConsume: Diagnose errors automatically · 383d2c47
      Alp Toker authored
       1) Teach ExpectAndConsume() to emit expected and expected-after diagnostics
          using the generic diagnostic descriptions added in r197972, eliminating another
          set of trivial err_expected_* variations while maintaining existing behaviour.
      
       2) Lift SkipUntil() recovery out of ExpectAndConsume(). The Expect/Consume
          family of functions are primitive parser operations that now have the
          well-defined property of operating on single tokens. Factoring out recovery
          exposes opportunities for more consistent and tailored error recover at the
          call sites instead of just relying on a bottled SkipUntil formula.
      
      llvm-svn: 198270
      383d2c47
  3. Dec 31, 2013
  4. Dec 30, 2013
    • DeLesley Hutchins's avatar
      Update RecursiveASTVisitor so that it visits attributes. This is currently · c4a82438
      DeLesley Hutchins authored
      important for thread safety attributes, which contain expressions that were
      not being visited, and were thus invisible to various tools.  There are now
      Visit*Attr methods that can be overridden for every attribute.
      
      llvm-svn: 198224
      c4a82438
    • NAKAMURA Takumi's avatar
      [CMake][VS][XCode] Restruct the output directory layout more comfortable,... · baa9f533
      NAKAMURA Takumi authored
      [CMake][VS][XCode] Restruct the output directory layout more comfortable, ${BINARY_DIR}/${BUILD_MODE}/(bin|lib)
      
      We have been seeing nasty directory layout with CMake multiconfig, such as,
        bin/Release/clang.exe
        lib/clang/3.x/...
        lib/Release/clang/3.x/.. (duplicated)
      
      Move the layout similar to autoconf's;
        Release/bin/clang.exe
        Release/lib/clang/3.x/...
      
      Checked on Visual Studio 10. Could you guys please confirm my change on XCode(and other multiconfig builders)?
      
      Note: Don't set variables CMAKE_*_OUTPUT_DIRECTORY any more, or a certain builder, for eaxample, msbuild.exe, would be confused.
      llvm-svn: 198205
      baa9f533
    • Alp Toker's avatar
      Fix and reword some typos · ba5b4dc6
      Alp Toker authored
      llvm-svn: 198191
      ba5b4dc6
    • Alp Toker's avatar
      Cleanup: Switch the preprocessor to err_pp_expected_after · 751d635a
      Alp Toker authored
      This is approaching consistency but the PP and Parse categories they still have
      slightly different wording:
      
      def err_pp_expected_after : Error<"missing %1 after %0">;
      def err_expected_after   : Error<"expected %1 after %0">;
      
      llvm-svn: 198189
      751d635a
  5. Dec 29, 2013
  6. Dec 28, 2013
  7. Dec 27, 2013
  8. Dec 26, 2013
  9. Dec 25, 2013
  10. Dec 24, 2013
    • Daniel Jasper's avatar
      clang-format: (WebKit) Disallow 1-line constructors with initializers. · 234379fb
      Daniel Jasper authored
      Before:
        Constructor() : a(a) {}
      
      After:
        Constructor()
            : a(a)
        {
        }
      
      This style guide is pretty precise about this.
      
      llvm-svn: 197980
      234379fb
    • Alp Toker's avatar
      Support and use token kinds as diagnostic arguments · ec543279
      Alp Toker authored
      Introduce proper facilities to render token spellings using the diagnostic
      formatter.
      
      Replaces most of the hard-coded diagnostic messages related to expected tokens,
      which all shared the same semantics but had to be multiply defined due to
      variations in token order or quote marks.
      
      The associated parser changes are largely mechanical but they expose
      commonality in whole chunks of the parser that can now be factored away.
      
      This commit uses C++11 typed enums along with a speculative legacy fallback
      until the transition is complete.
      
      Requires corresponding changes in LLVM r197895.
      
      llvm-svn: 197972
      ec543279
  11. Dec 23, 2013
Loading