Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2007-04-13-InlineAsmStruct2.c
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

struct V { short X, Y; };
int bar(void) {
  struct V bar;
  // CHECK: call void asm
  __asm__ volatile("foo %0\n" :: "r"(bar));
  return bar.X;
}