You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
375 B
18 lines
375 B
4 months ago
|
; RUN: llc < %s | FileCheck %s
|
||
|
|
||
|
; CHECK: orr w0, wzr, #0x1
|
||
|
; CHECK-NEXT: bl foo
|
||
|
; CHECK-NEXT: orr w0, wzr, #0x1
|
||
|
; CHECK-NEXT: bl foo
|
||
|
|
||
|
target triple = "aarch64--linux-android"
|
||
|
declare i32 @foo(i32)
|
||
|
|
||
|
; Function Attrs: nounwind uwtable
|
||
|
define i32 @main() {
|
||
|
entry:
|
||
|
%call = tail call i32 @foo(i32 1)
|
||
|
%call1 = tail call i32 @foo(i32 1)
|
||
|
ret i32 0
|
||
|
}
|