mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 14:53:04 -04: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.
13 lines
429 B
Kotlin
13 lines
429 B
Kotlin
// 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 Kotlin IDE" for
|
|
// profile-guided compilation.
|
|
|
|
fun square(num: Int): Int = num * num
|