Skip to content
  1. Oct 04, 2006
  2. Aug 28, 2006
  3. Aug 27, 2006
  4. Aug 23, 2006
    • Reid Spencer's avatar
      Make the ProgramName variable a std::string so we can eliminate the path · bd156a90
      Reid Spencer authored
      portion fo the program name via sys::Path().getLast(). This makes error
      messages more readable since this is invariably used only in error
      messages.  Instead of:
        /path/to/llvm/bin/directory/toolname: error message
      we will now get:
        toolname: error message
      Also, since we always have a program name (even if its defaulted), don't
      check to see if it is set or not when generating error messages. This
      eliminates a bunch of constant strings, saving a little under 1K of data.
      
      llvm-svn: 29842
      bd156a90
  5. Aug 21, 2006
    • Reid Spencer's avatar
      For PR797: · c295914b
      Reid Spencer authored
      Make sys::Program::ExecuteAndWait not throw exceptions and update any
      affected code. It now return -9999 to signal that the program couldn't be
      executed. Only one case (in bugpoint) actually examines the result code.
      
      llvm-svn: 29785
      c295914b
  6. Aug 02, 2006
  7. Jul 19, 2006
  8. Jul 06, 2006
  9. Jun 05, 2006
  10. Apr 28, 2006
  11. Jan 17, 2006
  12. Dec 26, 2005
  13. Nov 16, 2005
  14. Aug 08, 2005
  15. May 13, 2005
  16. May 11, 2005
  17. Apr 22, 2005
  18. Feb 14, 2005
  19. Nov 24, 2004
  20. Nov 21, 2004
  21. Nov 19, 2004
  22. Nov 16, 2004
  23. Nov 14, 2004
  24. Nov 07, 2004
  25. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  26. Sep 01, 2004
  27. Aug 13, 2004
    • Reid Spencer's avatar
      Allow any cl::opt to use the method getPosition() to retrieve the option's · 2027a6ff
      Reid Spencer authored
      absolute position on the command line. Similarly allow any cl::list to
      use the method getPosition(n) to retrieve the absolute position of the nth
      option in the list. This provides support for two things: (a) options like
      -l that are actually positional and their order of occurrence matters when
      they are intermixed with positional arguments like "a.o"; and (b) options
      like -x LANG which affect only the positional arguments that come after
      the option. In both cases, knowing the absolute position of a given option
      helps.
      
      llvm-svn: 15725
      2027a6ff
  28. Aug 04, 2004
  29. Jul 18, 2004
  30. Jul 03, 2004
  31. May 07, 2004
  32. Mar 04, 2004
  33. Dec 14, 2003
  34. Nov 11, 2003
  35. Oct 20, 2003
  36. Oct 10, 2003
  37. Sep 16, 2003
Loading