blob: 23d6c5ae1fdb66b75103a2a70e3e076547677730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes
; RUN: opt < %s -passes=function-attrs -S | FileCheck %s
define i32 @a() {
; CHECK: Function Attrs: nofree nosync nounwind memory(none)
; CHECK-LABEL: define {{[^@]+}}@a
; CHECK-SAME: () #[[ATTR0:[0-9]+]] {
; CHECK-NEXT: [[TMP:%.*]] = call i32 @b()
; CHECK-NEXT: ret i32 [[TMP]]
;
%tmp = call i32 @b()
ret i32 %tmp
}
define i32 @b() {
; CHECK: Function Attrs: nofree nosync nounwind memory(none)
; CHECK-LABEL: define {{[^@]+}}@b
; CHECK-SAME: () #[[ATTR0]] {
; CHECK-NEXT: [[TMP:%.*]] = call i32 @a()
; CHECK-NEXT: ret i32 [[TMP]]
;
%tmp = call i32 @a()
ret i32 %tmp
}
|