[llvm-commits] CVS: llvm-java/test/Compiler/BigConstants.java
Alkis Evlogimenos
alkis at cs.uiuc.edu
Thu May 27 15:28:01 PDT 2004
Changes in directory llvm-java/test/Compiler:
BigConstants.java added (r1.1)
---
Log message:
Add test case for testing LDC, LDC_W and LDC2_W bytecodes.
---
Diffs of the changes: (+11 -0)
Index: llvm-java/test/Compiler/BigConstants.java
diff -c /dev/null llvm-java/test/Compiler/BigConstants.java:1.1
*** /dev/null Thu May 27 15:24:59 2004
--- llvm-java/test/Compiler/BigConstants.java Thu May 27 15:24:49 2004
***************
*** 0 ****
--- 1,11 ----
+ public class BigConstants
+ {
+ public static int main(String[] args) {
+ int i = 1234567890;
+ long l = 1234567890123456789L;
+ float f = -1.23456789e10F;
+ double d = 1.23456789e100;
+
+ return 0;
+ }
+ }
More information about the llvm-commits
mailing list