commit ee162219d31c087e57d78068fb05f749ac88e35e
parent c03017b6d4d679d3a443cff9f7b07f984285e85a
Author: Ryan Sepassi <rsepassi@gmail.com>
Date: Mon, 1 Jun 2026 17:14:39 -0700
test: use an unknown clobber_abi name in the error case
.callee_saved became a valid clobber_abi, so this error case no longer
exercised the unknown-abi path. Switch to .nonexistent to keep testing the
rejection.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/toy/err/invalid_asm_unknown_clobber_abi.toy b/test/toy/err/invalid_asm_unknown_clobber_abi.toy
@@ -5,7 +5,7 @@ fn main(): i64 {
inputs(),
clobbers(),
flags(.volatile),
- clobber_abi(.callee_saved)
+ clobber_abi(.nonexistent)
);
return 0;
}