diff options
author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2012-11-14 23:23:27 +0000 |
---|---|---|
committer | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2012-11-14 23:23:27 +0000 |
commit | 527388dea5b4220f463a7cef6b1012770d1a80a5 (patch) | |
tree | 1d5ade42291582086498b03f76397219a0d77a8e /test/CodeGen/PowerPC/vec_extload.ll | |
parent | 791ebec45bcdcdf07a85de0a3f671cdb7a576bc7 (diff) | |
download | external_llvm-527388dea5b4220f463a7cef6b1012770d1a80a5.zip external_llvm-527388dea5b4220f463a7cef6b1012770d1a80a5.tar.gz external_llvm-527388dea5b4220f463a7cef6b1012770d1a80a5.tar.bz2 |
This patch is in preparation for adding medium code model support to the
PPC64 target. The five tests modified herein test code generation that is
sensitive to the code model selected. So I've added -code-model=small to
the RUN commands for each.
Since small code model is the default, this has no effect for now; but this
prepares us for eventually changing the default to medium code model for PPC64.
Test changes verified with small and medium code model as default on
powerpc64-unknown-linux-gnu. All tests continue to pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/vec_extload.ll')
-rw-r--r-- | test/CodeGen/PowerPC/vec_extload.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/PowerPC/vec_extload.ll b/test/CodeGen/PowerPC/vec_extload.ll index 201c15b..15a3f9f 100644 --- a/test/CodeGen/PowerPC/vec_extload.ll +++ b/test/CodeGen/PowerPC/vec_extload.ll @@ -1,4 +1,4 @@ -; RUN: llc -mcpu=pwr6 -mattr=+altivec < %s | FileCheck %s +; RUN: llc -mcpu=pwr6 -mattr=+altivec -code-model=small < %s | FileCheck %s ; Check vector extend load expansion with altivec enabled. |