Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2010-02-18-Dbg-VectorType.c
// RUN: %clang -emit-llvm -S -O0 -g %s -o - | grep DW_TAG_typedef | grep float4
typedef float float4 __attribute__((vector_size(16)));

int main(void){
  volatile float4 x = (float4) { 0.0f, 1.0f, 2.0f, 3.0f };
  x += x;
  return 0;
}