14 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --scrub-attributes2; RUN: opt -S < %s | FileCheck %s3 4declare void @foo()5 6define internal void @bar() {7; CHECK-LABEL: @bar(8; CHECK-NEXT: call void @foo()9; CHECK-NEXT: ret void10;11 call void @foo() readnone12 ret void13}14