diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-07-31 18:46:41 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-07-31 18:46:41 +0000 |
commit | e2d529ac1111f153628a9c5c654f4a514e841b47 (patch) | |
tree | 42299470c7ebda4e10e6362ec65d2b1f94375636 /test | |
parent | d97f3a5ab084485fe4931b6e7d8fa40ae4caa3c1 (diff) | |
download | external_llvm-e2d529ac1111f153628a9c5c654f4a514e841b47.zip external_llvm-e2d529ac1111f153628a9c5c654f4a514e841b47.tar.gz external_llvm-e2d529ac1111f153628a9c5c654f4a514e841b47.tar.bz2 |
When store nodes or memcpy nodes are created to copy the function call
arguments to the stack in MipsISelLowering::LowerCall, use stack pointer and
integer offset operands rather than frame object operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/Mips/helloworld.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/CodeGen/Mips/helloworld.ll b/test/CodeGen/Mips/helloworld.ll index 062ff7c..bee93ac 100644 --- a/test/CodeGen/Mips/helloworld.ll +++ b/test/CodeGen/Mips/helloworld.ll @@ -1,7 +1,9 @@ ; RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=C1 ; RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=C2 ; RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=PE -; RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=SR +; +; re-enable this when mips16's jalr is fixed. +; DISABLED: llc -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=SR @.str = private unnamed_addr constant [13 x i8] c"hello world\0A\00", align 1 |