comparison graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/RiField.java @ 5531:816fb2492760

Remove architecture boolean from Ri* interfaces.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 08 Jun 2012 22:00:05 +0200
parents dc71b06d09f8
children a891c53a295b
comparison
equal deleted inserted replaced
5530:9da759562a42 5531:816fb2492760
40 */ 40 */
41 RiType type(); 41 RiType type();
42 42
43 /** 43 /**
44 * Gets the kind of this field. 44 * Gets the kind of this field.
45 * @param architecture When true, the architecture-specific kind used for emitting machine code is returned.
46 * When false, the kind according to the Java specification is returned.
47 * @return the kind 45 * @return the kind
48 */ 46 */
49 RiKind kind(boolean architecture); 47 RiKind kind();
50 48
51 /** 49 /**
52 * Gets the holder of this field as a compiler-runtime interface type. 50 * Gets the holder of this field as a compiler-runtime interface type.
53 * @return the holder of this field 51 * @return the holder of this field
54 */ 52 */