Skip to content

Commit 4c31c07

Browse files
author
Brian Huffman
committed
Fix bug in typeOfJavaType that was turning long into int.
1 parent cf055b6 commit 4c31c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/SAWScript/Crucible/JVM/Builtins.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ typeOfJavaType jty =
819819
JavaChar -> J.CharType
820820
JavaShort -> J.ShortType
821821
JavaInt -> J.IntType
822-
JavaLong -> J.IntType
822+
JavaLong -> J.LongType
823823
JavaFloat -> J.FloatType
824824
JavaDouble -> J.DoubleType
825825
JavaArray _ t -> J.ArrayType (typeOfJavaType t)

0 commit comments

Comments
 (0)