[llvm] r366303 - [mips] Remove redundant test case. NFC

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 17 01:12:03 PDT 2019


Author: atanasyan
Date: Wed Jul 17 01:12:03 2019
New Revision: 366303

URL: http://llvm.org/viewvc/llvm-project?rev=366303&view=rev
Log:
[mips] Remove redundant test case. NFC

The `inlineasm-constraint-reg64.ll` test checks the same functionality.

Removed:
    llvm/trunk/test/CodeGen/Mips/inlineasm64.ll

Removed: llvm/trunk/test/CodeGen/Mips/inlineasm64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/inlineasm64.ll?rev=366302&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/inlineasm64.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/inlineasm64.ll (removed)
@@ -1,17 +0,0 @@
-; RUN: llc -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s | FileCheck %s
-
- at gl2 = external global i64
- at gl1 = external global i64
- at 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
-}
-




More information about the llvm-commits mailing list