Skip to content
  1. Nov 26, 2008
  2. Nov 25, 2008
  3. May 04, 2008
  4. Feb 26, 2008
  5. Feb 20, 2008
  6. Dec 29, 2007
  7. Oct 22, 2007
  8. Oct 08, 2007
  9. Jul 05, 2007
  10. Jun 29, 2007
  11. May 07, 2007
  12. May 06, 2007
  13. Apr 08, 2007
  14. Apr 07, 2007
    • Reid Spencer's avatar
      For PR1291: · 21b76a9b
      Reid Spencer authored
      Change uses of sys::Path class to sys::PathWithStatus in those places where
      the file status information is needed.
      
      llvm-svn: 35743
      21b76a9b
  15. Mar 29, 2007
    • Reid Spencer's avatar
      For PR789: · 200c6f9c
      Reid Spencer authored
      Make the sys::Path::getFileStatus function more efficient by having it
      return a pointer to the FileStatus structure rather than copy it. Adjust
      uses of the function accordingly. Also, fix some memory issues in sys::Path.
      
      llvm-svn: 35476
      200c6f9c
  16. Feb 16, 2007
  17. Feb 12, 2007
    • Lauro Ramos Venancio's avatar
      Fix build error on ARM. · 15f463c2
      Lauro Ramos Venancio authored
      Since CompilerDriver.cpp revision 1.44, llvmc must be linked against LLVMCore.a (llvm::Module::~Module) and LLVMBCReader.a
      (llvm::getBytecodeModuleProvider).
      
      llvm-svn: 34196
      15f463c2
  18. Feb 08, 2007
  19. Feb 07, 2007
    • Chris Lattner's avatar
      push bytecode decompressor out through APIs. Now the bytecode reader · a0e49f2e
      Chris Lattner authored
      api's look like this:
      
      ModuleProvider *getBytecodeModuleProvider(
        const std::string &Filename,  ///< Name of file to be read
        BCDecompressor_t *BCDC = Compressor::decompressToNewBuffer,
        std::string* ErrMsg = 0,      ///< Optional error message holder
        BytecodeHandler* H = 0        ///< Optional handler for reader events
      );
      
      This is ugly, but allows a client to say:
      
        getBytecodeModuleProvider("foo", 0);
      
      If they do this, there is no dependency on the compression libraries, saving
      codesize.
      
      llvm-svn: 34012
      a0e49f2e
  20. Dec 13, 2006
  21. Dec 06, 2006
  22. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  23. Sep 04, 2006
  24. Aug 29, 2006
  25. Aug 25, 2006
    • Reid Spencer's avatar
      For PR797: · f25aebf8
      Reid Spencer authored
      Remove exception throwing/handling from lib/Bytecode, and adjust its users
      to compensate for changes in the interface.
      
      llvm-svn: 29875
      f25aebf8
  26. Aug 22, 2006
  27. Aug 21, 2006
    • Reid Spencer's avatar
      For PR797: · 944645af
      Reid Spencer authored
      Adjust usage of the ExecuteAndWait function to use the last argument which
      is the ErrMsg string. This is necessitated because this function no longer
      throws exceptions on error.
      
      llvm-svn: 29791
      944645af
  28. Aug 16, 2006
  29. Aug 01, 2006
  30. Jul 07, 2006
  31. Jun 21, 2006
    • Chris Lattner's avatar
      Remove unneeded libs · 41c173c6
      Chris Lattner authored
      llvm-svn: 28900
      41c173c6
    • Reid Spencer's avatar
      For PR811: · c95970be
      Reid Spencer authored
      Don't both with the "C" and "cc" extensions as they aren't common and they
      the "C" extension conflicts with the "c" extension on operating systems
      that have case insensitive file names.
      
      llvm-svn: 28899
      c95970be
Loading