diff options
author | Bill Seurer <seurer@linux.vnet.ibm.com> | 2014-12-05 20:32:05 +0000 |
---|---|---|
committer | Bill Seurer <seurer@linux.vnet.ibm.com> | 2014-12-05 20:32:05 +0000 |
commit | 1baeeb029b4da865856039fd0ab148c576fe9fbd (patch) | |
tree | a96b2fbbdbff17042d9ed0ee914dc1048c86dd8f /llvm/test/CodeGen/PowerPC/vsx-ldst.ll | |
parent | dde00302c75e244cd858ff2c93d2f53cbd84c9eb (diff) | |
download | bcm5719-llvm-1baeeb029b4da865856039fd0ab148c576fe9fbd.tar.gz bcm5719-llvm-1baeeb029b4da865856039fd0ab148c576fe9fbd.zip |
[PowerPC]Update Power VSX test cases to also test fast-isel
Update of some of the VSX test cases for Power to check fast-isel codegen as well as the regular codegen.
http://reviews.llvm.org/D6357
llvm-svn: 223509
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/vsx-ldst.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/vsx-ldst.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vsx-ldst.ll b/llvm/test/CodeGen/PowerPC/vsx-ldst.ll index 0c9ebef8757..cf593b779b7 100644 --- a/llvm/test/CodeGen/PowerPC/vsx-ldst.ll +++ b/llvm/test/CodeGen/PowerPC/vsx-ldst.ll @@ -3,6 +3,11 @@ ; RUN: grep lxvd2x < %t | count 3 ; RUN: grep stxvw4x < %t | count 3 ; RUN: grep stxvd2x < %t | count 3 +; RUN: llc -mcpu=pwr8 -mattr=+vsx -O0 -fast-isel=1 -mtriple=powerpc64-unknown-linux-gnu < %s > %t +; RUN: grep lxvw4x < %t | count 3 +; RUN: grep lxvd2x < %t | count 3 +; RUN: grep stxvw4x < %t | count 3 +; RUN: grep stxvd2x < %t | count 3 @vsi = global <4 x i32> <i32 -1, i32 2, i32 -3, i32 4>, align 16 @vui = global <4 x i32> <i32 0, i32 1, i32 2, i32 3>, align 16 |