blob: a95154469d4836bfdbcfd50e79b18686cb10545c [file] [log] [blame]
Andrew Trick922d3142012-02-01 23:20:51 +00001; RUN: llc <%s -O2 -mcpu=atom -march=x86 -relocation-model=static | FileCheck -check-prefix=atom %s
2; RUN: llc <%s -O2 -mcpu=core2 -march=x86 -relocation-model=static | FileCheck %s
Chandler Carruthfd2e4e62012-04-16 23:11:39 +00003;
4; FIXME: Atom's scheduler is temporarily disabled.
5; XFAIL: *
Andrew Trick922d3142012-02-01 23:20:51 +00006
7@a = common global i32 0, align 4
8@b = common global i32 0, align 4
9@c = common global i32 0, align 4
10@d = common global i32 0, align 4
11@e = common global i32 0, align 4
12@f = common global i32 0, align 4
13
14define void @func() nounwind uwtable {
15; atom: imull
16; atom-NOT: movl
17; atom: imull
18; CHECK: imull
19; CHECK: movl
20; CHECK: imull
21entry:
22 %0 = load i32* @b, align 4
23 %1 = load i32* @c, align 4
24 %mul = mul nsw i32 %0, %1
25 store i32 %mul, i32* @a, align 4
26 %2 = load i32* @e, align 4
27 %3 = load i32* @f, align 4
28 %mul1 = mul nsw i32 %2, %3
29 store i32 %mul1, i32* @d, align 4
30 ret void
31}