--- old/src/share/classes/com/sun/tools/javac/code/Flags.java 2013-01-18 02:48:18.334328597 -0500 +++ new/src/share/classes/com/sun/tools/javac/code/Flags.java 2013-01-18 02:48:17.474280565 -0500 @@ -263,6 +263,11 @@ * the public class in a source file, that could block implicit compilation. */ public static final long AUXILIARY = 1L<<44; + + /** + * Flag that marks that a symbol is not available in the current profile + */ + public static final long NOT_IN_PROFILE = 1L<<45; /** Modifier masks. */