comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/BranchProfile.java @ 14992:602c090252e0

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 06 Apr 2014 17:47:00 +0200
parents 64dcb92ee75a a0200c215fb2
children d9d496d77d37
comparison
equal deleted inserted replaced
14991:64dcb92ee75a 14992:602c090252e0
42 CompilerDirectives.transferToInterpreterAndInvalidate(); 42 CompilerDirectives.transferToInterpreterAndInvalidate();
43 visited = true; 43 visited = true;
44 } 44 }
45 } 45 }
46 46
47 @Override
48 public String toString() {
49 return String.format("%s(%s)@%x", getClass().getSimpleName(), visited ? "visited" : "not-visited", hashCode());
50 }
51
47 } 52 }