diff options
author | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2019-02-12 18:06:06 +0000 |
---|---|---|
committer | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2019-02-12 18:06:06 +0000 |
commit | 34bead750c25fb3fa56dfe268797c438b1ccbb66 (patch) | |
tree | 38e3c1b9a2d6e8046b5bc237a6d10a82e9c90eb6 /llvm/test/CodeGen/SystemZ/subregliveness-02.ll | |
parent | 0205828be4f1b89a49ea60f818efa0e23fe2ee41 (diff) | |
download | bcm5719-llvm-34bead750c25fb3fa56dfe268797c438b1ccbb66.tar.gz bcm5719-llvm-34bead750c25fb3fa56dfe268797c438b1ccbb66.zip |
[SystemZ] Use VGM whenever possible to load FP immediates.
isFPImmLegal() has been extended to recognize certain FP immediates that can
be built with VGM (Vector Generate Mask).
These scalar FP immediates (that were previously loaded from the constant
pool) are now selected as VGMF/VGMG in Select().
Review: Ulrich Weigand
https://reviews.llvm.org/D58003
llvm-svn: 353867
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/subregliveness-02.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/subregliveness-02.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/SystemZ/subregliveness-02.ll b/llvm/test/CodeGen/SystemZ/subregliveness-02.ll index abdc223bcb8..8f972e18a66 100644 --- a/llvm/test/CodeGen/SystemZ/subregliveness-02.ll +++ b/llvm/test/CodeGen/SystemZ/subregliveness-02.ll @@ -1,7 +1,7 @@ ; RUN: llc -mtriple=s390x-linux-gnu -mcpu=z13 -systemz-subreg-liveness < %s | FileCheck %s ; Check for successful compilation. -; CHECK: meeb %f0, 0(%r1) +; CHECK: meebr %f1, %f0 target datalayout = "E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-v128:64-a:8:16-n32:64" target triple = "s390x-ibm-linux" |