mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 16:24:03 -05:00
Adds Dex2OatCompiler, which applies to the Android Java and Android Kotlin languages. Dex2OatCompiler runs on .dex files output by D8Compiler, which in turn runs on .class files output by JavaCompiler or KotlinCompiler. A parser has been added for dex2oat optimization passes.
7 lines
126 B
Java
7 lines
126 B
Java
// Type your code here, or load an example.
|
|
class Square {
|
|
static int square(int num) {
|
|
return num * num;
|
|
}
|
|
}
|