comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaFieldImpl.java @ 23997:9a740aa0d87b

use raw method name symbol for isConstructor and isClassInitializer
author Doug Simon <doug.simon@oracle.com>
date Sat, 04 Feb 2017 15:24:10 +0100
parents 11f0412408cd
children 813c28963a9e
comparison
equal deleted inserted replaced
23996:11f0412408cd 23997:9a740aa0d87b
136 return format("HotSpotField<%H.%n %t:") + offset + ">"; 136 return format("HotSpotField<%H.%n %t:") + offset + ">";
137 } 137 }
138 138
139 @Override 139 @Override
140 public boolean isSynthetic() { 140 public boolean isSynthetic() {
141 return (config().syntheticFlag & modifiers) != 0; 141 return (config().jvmAccSynthetic & modifiers) != 0;
142 } 142 }
143 143
144 /** 144 /**
145 * Checks if this field has the {@link Stable} annotation. 145 * Checks if this field has the {@link Stable} annotation.
146 * 146 *