Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

macho-reloc-thumb-local.s
@ RUN: llvm-mc -triple thumbv6m-apple-macho %s -filetype=obj -o %t
@ RUN: llvm-objdump --macho --section=__DATA,__data %t | FileCheck %s

@ CHECK: 00000000 00000003
        .data
        .align 2
        .global _foo
_foo:
        .long _bar
        .long _baz

        .text
        .thumb_func _bar
        .weak_definition _bar
_bar:
        bx lr

        .thumb_func _baz
        .global _baz
 _baz:
        bx lr