diff options
author | Hal Finkel <hfinkel@anl.gov> | 2015-04-23 18:30:38 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2015-04-23 18:30:38 +0000 |
commit | 7c5cb066d091eed948d0ef10bb15b9def37b81ab (patch) | |
tree | 0e373508c363bd3b312a69e8dd4dbf71a6afaa12 /llvm/test/CodeGen/PowerPC/vsx-ldst.ll | |
parent | 9cf4f2c2d8347c9e7843ac4c00854ca0eb386ac1 (diff) | |
download | bcm5719-llvm-7c5cb066d091eed948d0ef10bb15b9def37b81ab.tar.gz bcm5719-llvm-7c5cb066d091eed948d0ef10bb15b9def37b81ab.zip |
[PowerPC] Enable printing instructions using aliases
TableGen had been nicely generating code to print a number of instructions using
shorter aliases (and PowerPC has plenty of short mnemonics), but we were not
calling it. For some of the aliases we support in the parser, TableGen can't
infer the "inverse" alias relationship, so there is still more to do.
Thus, after some hours of updating test cases...
llvm-svn: 235616
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/vsx-ldst.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/vsx-ldst.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vsx-ldst.ll b/llvm/test/CodeGen/PowerPC/vsx-ldst.ll index 4ed91bca420..d198f0b8636 100644 --- a/llvm/test/CodeGen/PowerPC/vsx-ldst.ll +++ b/llvm/test/CodeGen/PowerPC/vsx-ldst.ll @@ -12,7 +12,7 @@ ; RUN: llc -mcpu=pwr8 -mattr=+vsx -O2 -mtriple=powerpc64le-unknown-linux-gnu < %s > %t ; RUN: grep lxvd2x < %t | count 6 ; RUN: grep stxvd2x < %t | count 6 -; RUN: grep xxpermdi < %t | count 12 +; RUN: grep xxswapd < %t | count 12 @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 |