langtools/src/share/classes/com/sun/tools/javac/jvm/Gen.java
changeset 5738 c24b113fe4ac
parent 5520 86e4b9a9da40
parent 5736 ee0850472ca1
child 5857 84d4886d48aa
equal deleted inserted replaced
5735:3190f7182a90 5738:c24b113fe4ac
   119             options.get("-g:") == null
   119             options.get("-g:") == null
   120             ? options.get("-g") != null
   120             ? options.get("-g") != null
   121             : options.get("-g:vars") != null;
   121             : options.get("-g:vars") != null;
   122         genCrt = options.get("-Xjcov") != null;
   122         genCrt = options.get("-Xjcov") != null;
   123         debugCode = options.get("debugcode") != null;
   123         debugCode = options.get("debugcode") != null;
   124         allowInvokedynamic = options.get("invokedynamic") != null;
   124         allowInvokedynamic = target.hasInvokedynamic() || options.get("invokedynamic") != null;
   125 
   125 
   126         generateIproxies =
   126         generateIproxies =
   127             target.requiresIproxy() ||
   127             target.requiresIproxy() ||
   128             options.get("miranda") != null;
   128             options.get("miranda") != null;
   129 
   129