From 26efc696c61190e41b95ae2ee6f7bdbc94c3d9d1 Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Wed, 28 Aug 2019 16:05:54 +0200 Subject: [PATCH] Remove specific calling convention in clif-util's run test. --- cranelift/src/run.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cranelift/src/run.rs b/cranelift/src/run.rs index 103c2a885f..a3cd94b25d 100644 --- a/cranelift/src/run.rs +++ b/cranelift/src/run.rs @@ -108,13 +108,12 @@ mod test { fn nop() { let code = String::from( " - function %test() -> b8 system_v { + function %test() -> b8 { ebb0: nop v1 = bconst.b8 true return v1 } - ; run ", );