diff options
| author | Simon Atanasyan <simon@atanasyan.com> | 2019-07-17 08:12:03 +0000 |
|---|---|---|
| committer | Simon Atanasyan <simon@atanasyan.com> | 2019-07-17 08:12:03 +0000 |
| commit | 1292464125fd257114fc03384ac9cdf185ee1831 (patch) | |
| tree | 10278b2ce7fcf29beb4855c876b20248a6f37fb4 | |
| parent | 6d4b1c046b821179f0cdf126234a12704a2fbed7 (diff) | |
| download | bcm5719-llvm-1292464125fd257114fc03384ac9cdf185ee1831.tar.gz bcm5719-llvm-1292464125fd257114fc03384ac9cdf185ee1831.zip | |
[mips] Remove redundant test case. NFC
The `inlineasm-constraint-reg64.ll` test checks the same functionality.
llvm-svn: 366303
| -rw-r--r-- | llvm/test/CodeGen/Mips/inlineasm64.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/test/CodeGen/Mips/inlineasm64.ll b/llvm/test/CodeGen/Mips/inlineasm64.ll deleted file mode 100644 index 82abdf82a3e..00000000000 --- a/llvm/test/CodeGen/Mips/inlineasm64.ll +++ /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 -} - |

