Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created July 7, 2013 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashkrit/5943745 to your computer and use it in GitHub Desktop.
Save ashkrit/5943745 to your computer and use it in GitHub Desktop.
JHM compile control
@CompilerControl(CompilerControl.Mode.DONT_INLINE)
public void target_dontInline() {
// this method was intentionally left blank
}
@CompilerControl(CompilerControl.Mode.INLINE)
public void target_inline() {
// this method was intentionally left blank
}
@CompilerControl(CompilerControl.Mode.EXCLUDE)
public void target_exclude() {
// this method was intentionally left blank
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment