Files
wasmtime/cranelift/filetests/filetests/isa/x86/legalize-ineg-x86_64.clif
2020-02-14 13:16:02 -08:00

14 lines
271 B
Plaintext

; Test the custom legalization of ineg.i64 on x86_64.
test legalizer
target x86_64
function %ineg_legalized_i64() {
block0:
v0 = iconst.i64 1
v1 = ineg v0
; check: v0 = iconst.i64 1
; nextln: v2 = iconst.i64 0
; nextln: v1 = isub v2, v0
return
}