Skip to content
  1. Jul 05, 2013
  2. Jul 03, 2013
  3. Jul 02, 2013
    • Rafael Espindola's avatar
      Remove address spaces from MC. · 64e1af8e
      Rafael Espindola authored
      This is dead code since PIC16 was removed in 2010. The result was an odd mix,
      where some parts would carefully pass it along and others would assert it was
      zero (most of the object streamer for example).
      
      llvm-svn: 185436
      64e1af8e
  4. Jul 01, 2013
  5. Jun 28, 2013
  6. Jun 27, 2013
  7. Jun 26, 2013
    • Manman Ren's avatar
      Debug Info: clean up usage of Verify. · aa00ce0e
      Manman Ren authored
      No functionality change.
      It should suffice to check the type of a debug info metadata, instead of
      calling Verify.
      
      llvm-svn: 185020
      aa00ce0e
    • Rafael Espindola's avatar
      Use enums instead of raw octal values. · e7e4a449
      Rafael Espindola authored
      Patch by 罗勇刚(Yonggang Luo).
      
      llvm-svn: 184971
      e7e4a449
    • Rafael Espindola's avatar
      Remove unused includes. · 479a9bd0
      Rafael Espindola authored
      llvm itself is now PathV1 clean.
      
      llvm-svn: 184947
      479a9bd0
    • Andy Gibbs's avatar
      Provide bootstrap support to build only llvm+clang when using cmake. · 3ef5ed1e
      Andy Gibbs authored
      Where a source tree is complete with lld, lldb and polly, it may not be possible to use cmake to configure build scripts if the host compiler it not capable of compiling these sub-projects.  This change makes it possible to first build a bootstrap clang compiler when can then be used to build a complete llvm toolchain.  An example bootstrap build sequence could be as follows:
      
      $ mkdir bootstrap
      $ cd bootstrap
      $ cmake -G 'Unix Makefiles'
              -DCMAKE_BUILD_TYPE:STRING=Release
              -DCMAKE_PREFIX_PATH:STRING=$(pwd)
              -DLLVM_TARGETS_TO_BUILD:STRING=host
              -DLLVM_INCLUDE_TOOLS:STRING=bootstrap-only
              ../source
      $ make clang  # build clang only for host
      
      $ cd ..
      $ export CC=$(realpath bootstrap/bin)/clang
      $ export CXX=$(realpath bootstrap/bin)/clang++
      
      $ mkdir final
      $ cd final
      $ cmake -G 'Unix Makefiles' ../source
      $ make all check-all
      
      llvm-svn: 184924
      3ef5ed1e
    • Rafael Espindola's avatar
      Port GetMainExecutable over to PathV2. · e03dfd9b
      Rafael Espindola authored
      I will remove the V1 version as soon as I change clang in the next commit.
      
      llvm-svn: 184914
      e03dfd9b
  8. Jun 25, 2013
  9. Jun 22, 2013
  10. Jun 21, 2013
  11. Jun 20, 2013
Loading