blob: 525e57432fb7b17658406a8488524921b2a59007 (
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() #0
; CHECK-NEXT: ret void
;
call void @foo() readnone
ret void
}
|