Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

include_by_env_var.asm
; RUN: env INCLUDE=%S llvm-ml -filetype=s %s /Fo - | FileCheck %s

include included.inc

.code

t1:
mov eax, Const

; CHECK-LABEL: t1:
; CHECK-NEXT: mov eax, 8

t2:
push_pop ebx

; CHECK-LABEL: t2:
; CHECK-NEXT: push ebx
; CHECK-NEXT: pop ebx

end