Skip to content

Commit 46e8963

Browse files
committed
Note TODO for failing test.
[skip ci]
1 parent d1874d4 commit 46e8963

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/native.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,9 +324,11 @@ end
324324

325325
@test call_real(1.0+im) == 1.0
326326

327-
# Test ABI removal
328-
ir = sprint(io->native_code_llvm(io, call_real, Tuple{ComplexF64}))
329-
@test !occursin("alloca", ir)
327+
if VERSION < v"1.8-" # FIXME(@vchuravy)
328+
# Test ABI removal
329+
ir = sprint(io->native_code_llvm(io, call_real, Tuple{ComplexF64}))
330+
@test !occursin("alloca", ir)
331+
end
330332

331333
ghostly_identity(x, y) = y
332334
@test call_delayed(ghostly_identity, nothing, 1) == 1

0 commit comments

Comments
 (0)