From 436604d505760f1ce170d68f7e09d5e5bd82f4e4 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Sun, 11 Oct 2009 23:03:53 +0000 Subject: Add missed mem-mem move patterns git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83812 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/MSP430/Inst8mm.ll | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/CodeGen/MSP430/Inst8mm.ll') diff --git a/test/CodeGen/MSP430/Inst8mm.ll b/test/CodeGen/MSP430/Inst8mm.ll index 5a128c5ed60..7e237a2817d 100644 --- a/test/CodeGen/MSP430/Inst8mm.ll +++ b/test/CodeGen/MSP430/Inst8mm.ll @@ -5,6 +5,14 @@ target triple = "msp430-generic-generic" @foo = common global i8 0, align 1 @bar = common global i8 0, align 1 +define void @mov() nounwind { +; CHECK: mov: +; CHECK: mov.b &bar, &foo + %1 = load i8* @bar + store i8 %1, i8* @foo + ret void +} + define void @add() nounwind { ; CHECK: add: ; CHECK: add.b &bar, &foo -- cgit v1.2.3