Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/src/pkg/TestPop2TwoIntPop2.jasm

31 lines
697 B

/**
* This code can be assembled with <a href="https://wiki.openjdk.java.net/display/CodeTools/asmtools">asmtools</a>
* using <code>asmtools jasm -g *.jasm</code> command line.
*/
package pkg;
super public class TestPop2TwoIntPop2
version 52:0
{
public Method "<init>":"()V"
stack 1 locals 1
{
aload_0;
invokespecial Method java/lang/Object."<init>":"()V";
return;
}
public static varargs Method main:"([Ljava/lang/String;)V"
stack 4 locals 1
{
getstatic Field java/lang/System.out:"Ljava/io/PrintStream;";
ldc int 1234567890;
ldc int 0xCAFE;
ldc int 0xBABE;
pop2;
invokevirtual Method java/io/PrintStream.println:"(I)V";
return;
}
} // end Class TestPop2TwoIntPop2