blob: cbea04a0971918556b6fb90d8d95d1fa267880b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S < %s | FileCheck %s
declare void @foo()
define internal void @bar() {
; CHECK-LABEL: @bar(
; CHECK-NEXT: call void @foo()
; CHECK-NEXT: ret void
;
call void @foo() readnone
ret void
}
|