temporarily XFAIL this test until post RA
[oota-llvm.git] / test / CodeGen / X86 / atom-sched.ll
1 ; XFAIL: *
2 ; RUN: llc <%s -O2 -mcpu=atom -march=x86 -relocation-model=static | FileCheck -check-prefix=atom %s
3 ; RUN: llc <%s -O2 -mcpu=core2 -march=x86 -relocation-model=static | FileCheck %s
4 ;
5 ; FIXME: Atom's scheduler is temporarily disabled.
6 ; XFAIL: *
7
8 @a = common global i32 0, align 4
9 @b = common global i32 0, align 4
10 @c = common global i32 0, align 4
11 @d = common global i32 0, align 4
12 @e = common global i32 0, align 4
13 @f = common global i32 0, align 4
14
15 define void @func() nounwind uwtable {
16 ; atom: imull
17 ; atom-NOT: movl
18 ; atom: imull
19 ; CHECK: imull
20 ; CHECK: movl
21 ; CHECK: imull
22 entry:
23   %0 = load i32* @b, align 4
24   %1 = load i32* @c, align 4
25   %mul = mul nsw i32 %0, %1
26   store i32 %mul, i32* @a, align 4
27   %2 = load i32* @e, align 4
28   %3 = load i32* @f, align 4
29   %mul1 = mul nsw i32 %2, %3
30   store i32 %mul1, i32* @d, align 4
31   ret void
32 }