mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 14:04:04 -05:00
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.
17 lines
471 B
Java
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;
|
|
}
|
|
}
|