Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2005-09-24-AsmUserPrefix.c
// RUN: %clang_cc1 %s -emit-llvm -o - | opt -O3 | llc | \
// RUN:    not grep _foo2

void foo(void) __asm__("foo2");

void bar(void) {
  foo();
}