diff options
| author | Hal Finkel <hfinkel@anl.gov> | 2014-03-28 20:24:55 +0000 |
|---|---|---|
| committer | Hal Finkel <hfinkel@anl.gov> | 2014-03-28 20:24:55 +0000 |
| commit | 2583b0631043d3f777fbb2dfd9a81b7188118d2d (patch) | |
| tree | f02bd98a56bec156e339b2370af165042159d8be /llvm/test/CodeGen/PowerPC | |
| parent | 498d82ee3e4cf391483d166886a391c5b21a2a21 (diff) | |
| download | bcm5719-llvm-2583b0631043d3f777fbb2dfd9a81b7188118d2d.tar.gz bcm5719-llvm-2583b0631043d3f777fbb2dfd9a81b7188118d2d.zip | |
[PowerPC] Fix VSX permutation isel
Not only did I invert the indices when I wrote the code, but I also did the
same thing when I wrote the regression test. Oops.
llvm-svn: 205046
Diffstat (limited to 'llvm/test/CodeGen/PowerPC')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/vsx.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vsx.ll b/llvm/test/CodeGen/PowerPC/vsx.ll index 4f4f816d723..ec10bc683b0 100644 --- a/llvm/test/CodeGen/PowerPC/vsx.ll +++ b/llvm/test/CodeGen/PowerPC/vsx.ll @@ -465,7 +465,7 @@ define <2 x double> @test54(<2 x double> %a, <2 x double> %b) { ret <2 x double> %v ; CHECK-LABEL: @test54 -; CHECK: xxpermdi 34, 34, 35, 1 +; CHECK: xxpermdi 34, 34, 35, 2 ; CHECK: blr } |

