Skip to content

Commit ccd7ae4

Browse files
committed
fix instanceOf in statement contexts
1 parent 19dd3c5 commit ccd7ae4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jvm/clojure/lang/Compiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2755,7 +2755,7 @@ public boolean canEmitPrimitive(){
27552755
}
27562756

27572757
public void emitUnboxed(C context, ObjExpr objx, GeneratorAdapter gen){
2758-
expr.emit(context,objx,gen);
2758+
expr.emit(C.EXPRESSION,objx,gen);
27592759
gen.instanceOf(Type.getType(c));
27602760
}
27612761

0 commit comments

Comments
 (0)