annotate test/CodeGen/ARM/arguments-nosplit-i64.ll @ 128:c347d3398279 default tip

fix
author mir3636
date Wed, 06 Dec 2017 14:37:17 +0900
parents 803732b1fca8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
1 ; RUN: llc -mtriple arm-linux-gnueabi -filetype asm -o - %s | FileCheck %s
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 ; PR4058
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
4 declare i32 @g(i64)
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
5
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 define i32 @f(i64 %z, i32 %a, i64 %b) {
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
7 %tmp = call i32 @g(i64 %b)
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
8 ret i32 %tmp
0
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 }
95c75e76d11b LLVM 3.4
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
121
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
11 ; CHECK-LABEL: f:
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
12 ; CHECK-NOT: r3
803732b1fca8 LLVM 5.0
kono
parents: 0
diff changeset
13