Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

inalloca-type-input.ll
%a = type { i64 }
%struct = type { i32, i8 }

define void @g(%a* inalloca(%a)) {
  ret void
}

declare void @baz(%struct* inalloca(%struct))

define void @foo(%struct* inalloca(%struct) %a) {
  call void @baz(%struct* inalloca(%struct) %a)
  ret void
}