Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / CodeGen / SPARC / 2013-05-17-CallFrame.ll
1 ; RUN: llc -march=sparc   < %s | FileCheck %s --check-prefix=V8
2 ; RUN: llc -march=sparcv9 < %s | FileCheck %s --check-prefix=SPARC64
3
4 ; V8-LABEL: variable_alloca_with_adj_call_stack
5 ; V8:       save %sp, -96, %sp
6 ; V8:       add {{.+}}, 96, %o0
7 ; V8:       add %sp, -16, %sp
8 ; V8:       call foo
9 ; V8:       add %sp, 16, %sp
10
11 ; SPARC64-LABEL: variable_alloca_with_adj_call_stack
12 ; SPARC64:       save %sp, -128, %sp
13 ; SPARC64:       add {{.+}}, 2175, %o0
14 ; SPARC64:       add %sp, -80, %sp
15 ; SPARC64:       call foo
16 ; SPARC64:       add %sp, 80, %sp
17
18 define void @variable_alloca_with_adj_call_stack(i32 %num) {
19 entry:
20   %0 = alloca i8, i32 %num, align 8
21   call void @foo(i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0, i8* %0)
22   ret void
23 }
24
25
26 declare void @foo(i8* , i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*);