diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/memcpy-vec.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/memcpy-vec.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/PowerPC/memcpy-vec.ll b/llvm/test/CodeGen/PowerPC/memcpy-vec.ll index 70c1c466fb2..cd0abd6149b 100644 --- a/llvm/test/CodeGen/PowerPC/memcpy-vec.ll +++ b/llvm/test/CodeGen/PowerPC/memcpy-vec.ll @@ -1,6 +1,6 @@ -; RUN: llc -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck -allow-deprecated-dag-overlap %s -check-prefix=PWR7 -; RUN: llc -verify-machineinstrs -mcpu=pwr8 < %s | FileCheck -allow-deprecated-dag-overlap %s -check-prefix=PWR8 -; RUN: llc -verify-machineinstrs -mcpu=a2q < %s | FileCheck -allow-deprecated-dag-overlap %s -check-prefix=A2Q +; RUN: llc -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck %s -check-prefix=PWR7 +; RUN: llc -verify-machineinstrs -mcpu=pwr8 < %s | FileCheck %s -check-prefix=PWR8 +; RUN: llc -verify-machineinstrs -mcpu=a2q < %s | FileCheck %s -check-prefix=A2Q target datalayout = "E-m:e-i64:64-n32:64" target triple = "powerpc64-unknown-linux-gnu" @@ -16,7 +16,7 @@ entry: ; PWR7-NOT: bl memcpy ; PWR7-DAG: li [[OFFSET:[0-9]+]], 16 ; PWR7-DAG: lxvd2x [[TMP0:[0-9]+]], 4, [[OFFSET]] -; PWR7-DAG: stxvd2x [[TMP0]], 0, 3 +; PWR7-DAG: stxvd2x [[TMP0]], 3, [[OFFSET]] ; PWR7-DAG: lxvd2x [[TMP1:[0-9]+]], 0, 4 ; PWR7-DAG: stxvd2x [[TMP1]], 0, 3 ; PWR7: blr |