You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
29
external/llvm/test/CodeGen/Mips/check-adde-redundant-moves.ll
vendored
Normal file
29
external/llvm/test/CodeGen/Mips/check-adde-redundant-moves.ll
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
; RUN: llc < %s -march=mips -mcpu=mips2 | FileCheck %s -check-prefixes=ALL,GP32
|
||||
; RUN: llc < %s -march=mips -mcpu=mips32 | FileCheck %s -check-prefixes=ALL,GP32
|
||||
; RUN: llc < %s -march=mips -mcpu=mips32r2 | FileCheck %s -check-prefixes=ALL,GP32
|
||||
; RUN: llc < %s -march=mips -mcpu=mips32r3 | FileCheck %s -check-prefixes=ALL,GP32
|
||||
; RUN: llc < %s -march=mips -mcpu=mips32r5 | FileCheck %s -check-prefixes=ALL,GP32
|
||||
; RUN: llc < %s -march=mips -mcpu=mips32r6 | FileCheck %s -check-prefixes=ALL,GP32
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips3 | FileCheck %s -check-prefix=ALL
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips4 | FileCheck %s -check-prefix=ALL
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips64 | FileCheck %s -check-prefix=ALL
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips64r2 | FileCheck %s -check-prefix=ALL
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips64r3 | FileCheck %s -check-prefix=ALL
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips64r5 | FileCheck %s -check-prefix=ALL
|
||||
; RUN: llc < %s -march=mips64 -mcpu=mips64r6 | FileCheck %s -check-prefix=ALL
|
||||
|
||||
define i64 @add_i64(i64 %a) {
|
||||
; GP32-LABEL: add_i64
|
||||
|
||||
; GP32-NOT: move $[[T0:[0-9]+]], $[[T0]]
|
||||
%r = add i64 5, %a
|
||||
ret i64 %r
|
||||
}
|
||||
|
||||
define i128 @add_i128(i128 %a) {
|
||||
; ALL-LABEL: add_i128
|
||||
|
||||
; ALL-NOT: move $[[T0:[0-9]+]], $[[T0]]
|
||||
%r = add i128 5, %a
|
||||
ret i128 %r
|
||||
}
|
Reference in New Issue
Block a user