Files
compiler-explorer/examples/android-java/default.java
kevinjeon-g 5e23a935de Add full oatdump output behind filters (#7233)
This change makes full oatdump output visible behind the "Directives"
filter. This does the same thing as the --full-output flag, but is
more-easily used. The default code snippets have been updated to include
this.
2024-12-20 11:58:18 -06:00

17 lines
471 B
Java

// Type your code here, or load an example.
//
// For R8, please load R8Example for an example with a keep annotation,
// which will prevent unused code from being removed from the final output.
//
// For dex2oat, 'Filter...' > 'Directives' can be unchecked for full
// oatdump output.
//
// (For advanced use only) Click "Templates > Android Java IDE" for
// profile-guided compilation.
class Square {
static int square(int num) {
return num * num;
}
}