diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-07-11 16:21:52 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-07-11 16:21:52 +0000 |
commit | 5b304432bb07b47b129e286c96d0d1f1433ebb85 (patch) | |
tree | 41f193ba202ea2fa535f86e4bdb50273be12f28a | |
parent | c7ec4539edde180b2494533a14bdea5ea31706c9 (diff) | |
download | bcm5719-llvm-5b304432bb07b47b129e286c96d0d1f1433ebb85.tar.gz bcm5719-llvm-5b304432bb07b47b129e286c96d0d1f1433ebb85.zip |
test/CodeGen/PowerPC/vector.ll: Tweak redirection >%t >%t to >%t >>%t. See also r134814 (test/CodeGen/X86/vector.ll).
llvm-svn: 134900
-rw-r--r-- | llvm/test/CodeGen/PowerPC/vector.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vector.ll b/llvm/test/CodeGen/PowerPC/vector.ll index ee4da315f92..e4c3b0db172 100644 --- a/llvm/test/CodeGen/PowerPC/vector.ll +++ b/llvm/test/CodeGen/PowerPC/vector.ll @@ -1,6 +1,6 @@ ; Test that vectors are scalarized/lowered correctly. ; RUN: llc < %s -march=ppc32 -mcpu=g5 > %t -; RUN: llc < %s -march=ppc32 -mcpu=g3 > %t +; RUN: llc < %s -march=ppc32 -mcpu=g3 >> %t %d8 = type <8 x double> %f1 = type <1 x float> |