Index: tests_lit/llvm2ice_tests/casts.ll |
diff --git a/tests_lit/llvm2ice_tests/casts.ll b/tests_lit/llvm2ice_tests/casts.ll |
deleted file mode 100644 |
index 66284e24e273a000ae5dc006588ebb49ea1e9dbe..0000000000000000000000000000000000000000 |
--- a/tests_lit/llvm2ice_tests/casts.ll |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-; RUN: %p2i -i %s --args --verbose inst | FileCheck %s |
-; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s |
-; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s |
- |
-define i64 @simple_zext(i32 %arg) { |
-entry: |
- %c = zext i32 %arg to i64 |
- ret i64 %c |
- |
-; CHECK: entry: |
-; CHECK-NEXT: %c = zext i32 %arg to i64 |
-; CHECK-NEXT: ret i64 %c |
-} |
- |
-; ERRORS-NOT: ICE translation error |
-; DUMP-NOT: SZ |