14 lines
271 B
Plaintext
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
|
|
}
|