1. 04 Dec, 2015 1 commit
  2. 01 Dec, 2015 1 commit
    • Use generic osinclude.h · 5f6892e2
      Pyry Haulos authored
      Using platform-neutral osinclude.h makes it easier to substitute
      implementation when necessary and eliminates some variability between
      build configurations.
  3. 28 Nov, 2015 2 commits
  4. 23 Nov, 2015 1 commit
  5. 22 Nov, 2015 1 commit
  6. 20 Nov, 2015 1 commit
  7. 16 Nov, 2015 7 commits
  8. 28 Oct, 2015 1 commit
  9. 27 Oct, 2015 1 commit
  10. 26 Oct, 2015 2 commits
  11. 16 Oct, 2015 1 commit
  12. 15 Oct, 2015 3 commits
  13. 14 Oct, 2015 1 commit
  14. 13 Oct, 2015 5 commits
  15. 12 Oct, 2015 1 commit
  16. 11 Oct, 2015 1 commit
  17. 06 Oct, 2015 1 commit
  18. 05 Oct, 2015 1 commit
  19. 02 Oct, 2015 1 commit
  20. 01 Oct, 2015 2 commits
  21. 22 Sep, 2015 1 commit
  22. 21 Sep, 2015 3 commits
  23. 18 Sep, 2015 1 commit
    • Fixed subtle issue that causes tests to fail in VS2013 in some configs. · 2d83ab2f
      Andrew Woloszyn authored
      Depending on specific optimization settings VS2013 will sometimes
      execute the operands to
      
      new Instruction(builder.getUniqueId(), builder.makeBoolType(), OpPhi)
      
      left-to-right, and sometimes right-to-left. Since makeBoolType can
      also call getUniqueId(), the IDs to the OpPhi can sometimes be swapped.
      
      This guarantees an explicit ordering of the Ids so that tests work
      reliably.