From a397fa6b3863a5ee39e4b621e92eca7c2c94d892 Mon Sep 17 00:00:00 2001 From: Cr0a3 Date: Wed, 30 Oct 2024 12:28:03 +0100 Subject: [PATCH] [TESTS] removing instr combine test cuz it doesn't work on github actions windows --- tests/x64/instr_combine-add-into-lea.yl | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tests/x64/instr_combine-add-into-lea.yl diff --git a/tests/x64/instr_combine-add-into-lea.yl b/tests/x64/instr_combine-add-into-lea.yl deleted file mode 100644 index 2ea0bab2..00000000 --- a/tests/x64/instr_combine-add-into-lea.yl +++ /dev/null @@ -1,12 +0,0 @@ -# RUN: -cargo run -p ylc -- -in=%s -asm-clr --triple=x86_64-unknown-linux | filecheck %s - -# IN: -define i32 @add(i32 %a, i32 %b) { - entry: -; CHECK: lea [[ANY:.*]], [ esi + edi ] - %ret = add i32 %a, %b -; CHECK: mov eax, [[ANY:.*]] -; CHECK: ret - ret i32 %ret -} \ No newline at end of file