AVX-512: added VCVTPH2PS, VCVTPS2PH with intrinsics
[oota-llvm.git] / test / CodeGen / MSP430 / Inst8mm.ll
index 5a128c5ed604d2350344d65707df393d0e26c8b9..d1ce8bc66b930ae0d8e4b90eea74f896bfca3b1f 100644 (file)
@@ -1,12 +1,20 @@
-; RUN: llvm-as < %s | llc -march=msp430 | FileCheck %s
+; RUN: llc -march=msp430 < %s | FileCheck %s
 target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
 target triple = "msp430-generic-generic"
 
 @foo = common global i8 0, align 1
 @bar = common global i8 0, align 1
 
+define void @mov() nounwind {
+; CHECK-LABEL: mov:
+; CHECK: mov.b &bar, &foo
+        %1 = load i8* @bar
+        store i8 %1, i8* @foo
+        ret void
+}
+
 define void @add() nounwind {
-; CHECK: add:
+; CHECK-LABEL: add:
 ; CHECK: add.b &bar, &foo
        %1 = load i8* @bar
        %2 = load i8* @foo
@@ -16,7 +24,7 @@ define void @add() nounwind {
 }
 
 define void @and() nounwind {
-; CHECK: and:
+; CHECK-LABEL: and:
 ; CHECK: and.b &bar, &foo
        %1 = load i8* @bar
        %2 = load i8* @foo
@@ -26,7 +34,7 @@ define void @and() nounwind {
 }
 
 define void @bis() nounwind {
-; CHECK: bis:
+; CHECK-LABEL: bis:
 ; CHECK: bis.b &bar, &foo
        %1 = load i8* @bar
        %2 = load i8* @foo
@@ -36,7 +44,7 @@ define void @bis() nounwind {
 }
 
 define void @xor() nounwind {
-; CHECK: xor:
+; CHECK-LABEL: xor:
 ; CHECK: xor.b &bar, &foo
        %1 = load i8* @bar
        %2 = load i8* @foo