Skip to content
  1. Oct 09, 2009
  2. Sep 09, 2009
  3. Aug 17, 2009
  4. Jul 29, 2009
  5. Jul 14, 2009
  6. Jun 10, 2009
  7. Jun 05, 2009
  8. Jun 01, 2009
  9. Apr 28, 2009
  10. Apr 21, 2009
  11. Apr 14, 2009
  12. Apr 01, 2009
  13. Mar 31, 2009
  14. Feb 27, 2009
  15. Feb 18, 2009
    • Chris Lattner's avatar
      Next step toward making string diagnostics correct: handle · ddb71919
      Chris Lattner authored
      escapes in the string for subtoken positioning.  This gives
      us working examples like:
      
      t.m:5:16: warning: field width should have type 'int', but argument has type 'unsigned int'
        printf("\n\n%*d", (unsigned) 1, 1);
                     ^    ~~~~~~~~~~~~
      
      where before the caret pointed two spaces to the left.
      
      llvm-svn: 64940
      ddb71919
  16. Jan 29, 2009
  17. Jan 27, 2009
  18. Jan 16, 2009
  19. Nov 22, 2008
  20. Nov 18, 2008
  21. Oct 16, 2008
  22. Sep 30, 2008
  23. Sep 02, 2008
  24. Aug 11, 2008
    • Daniel Dunbar's avatar
      More #include cleaning · 56fdb6ae
      Daniel Dunbar authored
       - Kill unnecessary #includes in .cpp files. This is an automatic
         sweep so some things removed are actually used, but happen to be
         included by a previous header. I tried to get rid of the obvious
         examples and this was the easiest way to trim the #includes in one
         fell swoop.
       - We now return to regularly scheduled development.
      
      llvm-svn: 54632
      56fdb6ae
  25. Jul 25, 2008
    • Chris Lattner's avatar
      In c89 mode accept hex fp constants as an extension: · c94ad4ab
      Chris Lattner authored
      t2.c:1:17: warning: hexadecimal floating constants are a C99 feature
      long double d = 0x0.0000003ffffffff00000p-16357L;
                      ^
      
      instead of emitting a weird error message that doesn't make sense:
      
      t2.c:1:41: error: hexadecimal floating constants require an exponent
      long double d = 0x0.0000003ffffffff00000p-16357L;
                                              ^
      
      rdar://6096838
      
      llvm-svn: 54035
      c94ad4ab
  26. Jun 30, 2008
  27. Apr 20, 2008
  28. Apr 04, 2008
  29. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  30. Mar 05, 2008
Loading