1. 26 Jan, 2016 4 commits
  2. 25 Jan, 2016 3 commits
  3. 22 Jan, 2016 13 commits
  4. 21 Jan, 2016 4 commits
  5. 20 Jan, 2016 5 commits
  6. 19 Jan, 2016 3 commits
  7. 15 Jan, 2016 5 commits
  8. 14 Jan, 2016 1 commit
  9. 13 Jan, 2016 2 commits
    • Add option to force filetype=asm for testing · b19d39cc
      David Sehr authored
      Also turn it on for presubmit testing.
      
      BUG=
      R=stichnot@chromium.org
      
      Review URL: https://codereview.chromium.org/1531623007 .
    • Subzero: Fix -build-atts option. · 686f35e5
      Jim Stichnoth authored
      If the default --target option is not actually included in the Subzero build (via llvm/Config/SZTargets.def), then "pnacl-sz --build-atts" will fail.  This is because the attribute printing is done after the GlobalContext is created, which does some amount of Target initialization.
      
      The fix is to move the attribute printing to a point after the flags are parsed and the output streams are created, but before the GlobalContext is created.  This basically disables --build-atts in the browser build, but that should be OK.
      
      BUG= none
      R=kschimpf@google.com
      
      Review URL: https://codereview.chromium.org/1584923002 .