Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

line_continuations.asm
; RUN: llvm-ml -filetype=s %s /Fo - | FileCheck %s

.code

t1:
mov eax, \
    ebx
; CHECK: t1:
; CHECK-NEXT: mov eax, ebx

t2:
mov eax, [ebx + \
          1]
; CHECK: t2:
; CHECK-NEXT: mov eax, dword ptr [ebx + 1]

END