OSDN Git Service

[mips] Remove redundant test case. NFC
authorSimon Atanasyan <simon@atanasyan.com>
Wed, 17 Jul 2019 08:12:03 +0000 (08:12 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Wed, 17 Jul 2019 08:12:03 +0000 (08:12 +0000)
The `inlineasm-constraint-reg64.ll` test checks the same functionality.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366303 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Mips/inlineasm64.ll [deleted file]

diff --git a/test/CodeGen/Mips/inlineasm64.ll b/test/CodeGen/Mips/inlineasm64.ll
deleted file mode 100644 (file)
index 82abdf8..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s | FileCheck %s
-
-@gl2 = external global i64
-@gl1 = external global i64
-@gl0 = external global i64
-
-define void @foo1() nounwind {
-entry:
-; CHECK: foo1
-; CHECK: daddu
-  %0 = load i64, i64* @gl1, align 8
-  %1 = load i64, i64* @gl0, align 8
-  %2 = tail call i64 asm "daddu $0, $1, $2", "=r,r,r"(i64 %0, i64 %1) nounwind
-  store i64 %2, i64* @gl2, align 8
-  ret void
-}
-