Skip to content
  1. Jan 11, 2015
  2. Jan 10, 2015
  3. Jan 09, 2015
  4. Jan 08, 2015
    • Daniel Jasper's avatar
      clang-format: Force line break between "endl" and "<<". · d05d3a89
      Daniel Jasper authored
      This makes piped output easier to read in many instances.
      
      Before:
        llvm::errs() << aaaa << std::endl << bbbb << std::endl;
      
      After:
        llvm::errs() << aaaa << std::endl
                     << bbbb << std::endl;
      
      Also fix a few instance of "don't use else after return" as per the
      coding standards.
      
      llvm-svn: 225444
      d05d3a89
    • Logan Chien's avatar
      Frontend: Fix SourceColumnMap assertion failure on non-ascii characters. · d3d385d6
      Logan Chien authored
      If there are some non-ascii character in the input source code, the
      column index might be smallar than the byte index.  This will result
      in two possible assertion failures.  This CL fixes the computation of
      the column index and byte index.
      
      1. The assertion in startOfNextColumn() and startOfPreviousColumn()
         should not be raised when the byte index is greater than the column
         index since the non-ascii characters may use more than one bytes to
         store a character in a column.
      
      2. The length of the caret line should be equal to the number of columns
         of source line, instead of the length of the source line.  Otherwise,
         the assertion in selectInterestingSourceRegion will be raised because
         the removed columns plus the kept columns are not greater than the max
         column, which means that we should not remove any column at all.
      
      llvm-svn: 225442
      d3d385d6
    • Daniel Jasper's avatar
      clang-format: Improve template parameter detection. · b13135bc
      Daniel Jasper authored
      Before:
        struct A < std::enable_if<sizeof(T2) <sizeof(int32)>::type>;
      
      After:
        struct A<std::enable_if<sizeof(T2) < sizeof(int32)>::type>;
      
      llvm-svn: 225435
      b13135bc
    • Richard Trieu's avatar
      When the diagnostic text is simply "%0", sanitize the string for any · b3b8bb00
      Richard Trieu authored
      unprintable characters.  Fixes PR22048.
      
      llvm-svn: 225423
      b3b8bb00
    • Nico Weber's avatar
      Wrap to 80 columns. No behavior change. · 462fd1ed
      Nico Weber authored
      llvm-svn: 225414
      462fd1ed
  5. Jan 07, 2015
Loading