comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/xir/XirSnippet.java @ 6329:92bc58dc5b5e

More clean up and documentation in api.code and api.meta.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 07 Sep 2012 13:40:53 +0200
parents a1db0ea58b53
children
comparison
equal deleted inserted replaced
6328:6e66d97a16ae 6329:92bc58dc5b5e
65 } else { 65 } else {
66 if (arg == null) { 66 if (arg == null) {
67 return false; 67 return false;
68 } 68 }
69 if (arg.constant != null) { 69 if (arg.constant != null) {
70 if (arg.constant.kind != param.kind) { 70 if (arg.constant.getKind() != param.kind) {
71 return false; 71 return false;
72 } 72 }
73 } 73 }
74 } 74 }
75 return true; 75 return true;