[NVPTX] Add missing patterns for div.approx with immediate denominator
[oota-llvm.git] / test / CodeGen / XCore / unaligned_store_combine.ll
index b61cf86988a0850b6df658c65f4fa88a8b7dd8e3..d1f4e6c15cd55556b781c723428fba266777d574 100644 (file)
@@ -1,11 +1,12 @@
-; RUN: llvm-as < %s | llc -march=xcore > %t1.s
-; RUN: grep "bl memmove" %t1.s | count 1
-; RUN: grep "ldc r., 8" %t1.s | count 1
+; RUN: llc < %s -march=xcore | FileCheck %s
 
 ; Unaligned load / store pair. Should be combined into a memmove
 ; of size 8
 define void @f(i64* %dst, i64* %src) nounwind {
 entry:
+; CHECK-LABEL: f:
+; CHECK: ldc r2, 8
+; CHECK: bl memmove
        %0 = load i64* %src, align 1
        store i64 %0, i64* %dst, align 1
        ret void