summaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/frame-address.ll
diff options
context:
space:
mode:
authorJack Carter <jcarter@mips.com>2013-02-05 08:32:10 +0000
committerJack Carter <jcarter@mips.com>2013-02-05 08:32:10 +0000
commit37ef65b9c1b93c386d13089d9ace6a1cc00e82dc (patch)
tree501b123477e6d45315c8a357cb5479d168add611 /test/CodeGen/Mips/frame-address.ll
parenta33e1fafac7fedb1b080ef07ddf9ad6ddff3a830 (diff)
downloadllvm-37ef65b9c1b93c386d13089d9ace6a1cc00e82dc.tar.gz
llvm-37ef65b9c1b93c386d13089d9ace6a1cc00e82dc.tar.bz2
llvm-37ef65b9c1b93c386d13089d9ace6a1cc00e82dc.tar.xz
This patch that sets the EmitAlias flag in td files
and enables the instruction printer to print aliased instructions. Due to usage of RegisterOperands a change in common code (utils/TableGen/AsmWriterEmitter.cpp) is required to get the correct register value if it is a RegisterOperand. Contributer: Vladimir Medic git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Mips/frame-address.ll')
-rw-r--r--test/CodeGen/Mips/frame-address.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Mips/frame-address.ll b/test/CodeGen/Mips/frame-address.ll
index e64e6d8cfe..9b9ee217a8 100644
--- a/test/CodeGen/Mips/frame-address.ll
+++ b/test/CodeGen/Mips/frame-address.ll
@@ -7,6 +7,6 @@ entry:
%0 = call i8* @llvm.frameaddress(i32 0)
ret i8* %0
-; CHECK: addu $fp, $sp, $zero
-; CHECK: or $2, $fp, $zero
+; CHECK: move $fp, $sp
+; CHECK: or $2, $fp, $zero
}