Test-add for the jdouble return-type variant — `#jni_call(f64)(env, target, "getValue", "()D")`. First non-integer return type for JNI. IR snapshot captures today's `ret double undef` placeholder. The next commit adds the `.f64 => Jni.CallDoubleMethod` arm.
20 lines
480 B
Plaintext
20 lines
480 B
Plaintext
// Phase 1 step 1.20 (PLAN-FFI.md): `#jni_call(f64)` (jdouble return).
|
|
// First non-integer return type for JNI — exercises the LLVM
|
|
// `double` ret path through CallDoubleMethod (vtable slot 58).
|
|
|
|
#import "modules/std.sx";
|
|
|
|
g_should_call : bool = false;
|
|
|
|
read_double :: (env: *void, target: *void) -> f64 {
|
|
#jni_call(f64)(env, target, "getValue", "()D");
|
|
}
|
|
|
|
main :: () -> s32 {
|
|
if g_should_call {
|
|
_ := read_double(null, null);
|
|
}
|
|
print("ok\n");
|
|
0;
|
|
}
|