Skip to content

Commit 0c8d55e

Browse files
authored
Metal: reject i128 (#571)
1 parent c15433c commit 0c8d55e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/metal.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ end
9696
function validate_ir(job::CompilerJob{MetalCompilerTarget}, mod::LLVM.Module)
9797
# Metal never supports double precision
9898
check_ir_values(mod, LLVM.DoubleType())
99+
check_ir_values(mod, LLVM.IntType(128))
99100
end
100101

101102
# hide `noreturn` function attributes, which cause issues with the back-end compiler,

0 commit comments

Comments
 (0)