1. 14 Jan, 2014 1 commit
  2. 13 Jan, 2014 2 commits
  3. 10 Jan, 2014 1 commit
    • Andrew Hsieh's avatar
      symlink non-default ld.mcld to default ld.mcld too · b505d797
      Andrew Hsieh authored
      Previously only ld.mcld in gcc directories gets symlink to
      the one llvm-$DEFAULT_LLVM_VERSION, the only place ld.mcld
      is built.  This CL adds symlink in non-default llvm-* too.
      
      Change-Id: I404637ba8128a720d3f91edf8cdcec7367bffd35
      b505d797
  4. 03 Jan, 2014 1 commit
    • Andrew Hsieh's avatar
      Fix test "delete2.cpp" to check saved==p only once · 9a99d0cf
      Andrew Hsieh authored
      Since STL is built w/o -Bsymbolic a lots of other code in STL may
      use the customized new/delete in delete2.cpp.  We only save one copy of
      poitner in variable "saved", but because this testcase new and immediately
      delete in single thread, the single-copy serves well, provided that we only
      check saved==p once and set saved to NULL to prevent further comparison of
      unrelated delete from within STL
      
      Change-Id: I1e512ef317bb453eb094a20dc7650daca23baed8
      9a99d0cf
  5. 31 Dec, 2013 5 commits
  6. 30 Dec, 2013 6 commits
  7. 27 Dec, 2013 6 commits
  8. 26 Dec, 2013 8 commits
  9. 25 Dec, 2013 2 commits
    • Logan Chien's avatar
      Fix compilation error in Clang 3.4. · 72a5123e
      Logan Chien authored
      According to C++ standard, the default destructor will be
      deleted if one of the destructor of the base classes is
      inaccessible.  In our cases, the private inheritance will
      make the destructor inaccessible to the derived class.
      In this commit, we are going to change the "private"
      inheritance to "protected" inheritance so that this test
      case can be standard compliant.
      
      This commit is cherry-picked from libc++abi upstream
      r187429, which is written by Howard Hinnant.  The original
      commit message:
      
      ------------------------------------------------------------
      commit 41458a0681f60e9b6778dbb799cbb5647db628eb
      Author: Howard Hinnant <hhinnant apple com>
      Date:   Tue Jul 30 19:00:45 2013 +0000
      
          tip-of-trunk clang has corrected some access checks for
          special members in a virtual inheritance hierarchy.
          Change a few private inheritances to protected.  This
          change will not impact what the test was testing.  This
          fixes PR16753.
      ------------------------------------------------------------
      
      Change-Id: Ibf0a534276f7e93ea027790a560b17fef1080f84
      72a5123e
    • Andrew Hsieh's avatar
      Merge "Add Clang/LLVM 3.4" · 9056db80
      Andrew Hsieh authored
      9056db80
  10. 24 Dec, 2013 2 commits
  11. 23 Dec, 2013 1 commit
    • Andrew Hsieh's avatar
      Fixed ndk-gdb-py.cmd on SHELL · 5388dfe1
      Andrew Hsieh authored
      Set SHELL as env. var. instead of passing it to python.exe which
      can't understand it.
      
      See b.android.com/63054
      
      Change-Id: I3c751237b1a929543a881321fb2657850b4f4eb8
      5388dfe1
  12. 18 Dec, 2013 5 commits