From 4de3cb11d853865128051f024c949e2794d8281e Mon Sep 17 00:00:00 2001 From: itycodes Date: Thu, 3 Apr 2025 19:54:01 +0200 Subject: [PATCH] Forgotten cargo fmt --- src/compiler/backend/tests.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compiler/backend/tests.rs b/src/compiler/backend/tests.rs index e4be473..3104634 100644 --- a/src/compiler/backend/tests.rs +++ b/src/compiler/backend/tests.rs @@ -174,13 +174,13 @@ fn test_fun_ssa() { Instruction { result_id: None, op: "OpReturn".to_string(), - operands: vec![] + operands: vec![], }, Instruction { result_id: None, op: "OpFunctionEnd".to_string(), - operands: vec![] - } + operands: vec![], + }, ]; assert_eq!(res, res_spv); } @@ -207,4 +207,4 @@ fn test_fun_ssa_vec() { let res = res.body.unwrap(); println!("{:#?}", res); println!("{:#?}", module) -} \ No newline at end of file +}