diff options
| author | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2017-01-31 13:43:11 +0000 |
|---|---|---|
| committer | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2017-01-31 13:43:11 +0000 |
| commit | 2f2a6ab991c22763fd25714c01988cb2ef156d50 (patch) | |
| tree | 7e859e031a82cb7f22792e4f5856a297e5ef7bfc /llvm/test/CodeGen/PowerPC/vsx-args.ll | |
| parent | e5c6a321637ee6b2a7b52e2791a34279ba26d8b7 (diff) | |
| download | bcm5719-llvm-2f2a6ab991c22763fd25714c01988cb2ef156d50.tar.gz bcm5719-llvm-2f2a6ab991c22763fd25714c01988cb2ef156d50.zip | |
[PowerPC][Altivec] Add vmr extended mnemonic
Just adds the vmr (Vector Move Register) mnemonic for the VOR instruction in
the PPC back end.
Committing on behalf of brunoalr (Bruno Rosa).
Differential Revision: https://reviews.llvm.org/D29133
llvm-svn: 293626
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/vsx-args.ll')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/vsx-args.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vsx-args.ll b/llvm/test/CodeGen/PowerPC/vsx-args.ll index 252f9b360b9..7fa31aea84b 100644 --- a/llvm/test/CodeGen/PowerPC/vsx-args.ll +++ b/llvm/test/CodeGen/PowerPC/vsx-args.ll @@ -13,10 +13,10 @@ entry: ret <2 x double> %v ; CHECK-LABEL: @main -; CHECK-DAG: vor [[V:[0-9]+]], 2, 2 -; CHECK-DAG: vor 2, 3, 3 -; CHECK-DAG: vor 3, 4, 4 -; CHECK-DAG: vor 4, [[V]], [[V]] +; CHECK-DAG: vmr [[V:[0-9]+]], 2 +; CHECK-DAG: vmr 2, 3 +; CHECK-DAG: vmr 3, 4 +; CHECK-DAG: vmr 4, [[V]] ; CHECK: bl sv ; CHECK: lxvd2x [[VC:[0-9]+]], ; CHECK: xvadddp 34, 34, [[VC]] @@ -24,8 +24,8 @@ entry: ; CHECK-FISL-LABEL: @main ; CHECK-FISL: stxvd2x 34 -; CHECK-FISL: vor 2, 3, 3 -; CHECK-FISL: vor 3, 4, 4 +; CHECK-FISL: vmr 2, 3 +; CHECK-FISL: vmr 3, 4 ; CHECK-FISL: lxvd2x 36 ; CHECK-FISL: bl sv ; CHECK-FISL: lxvd2x [[VC:[0-9]+]], |

