Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

struct-align.c
// RUN: %clang_cc1 -triple arc-unknown-unknown %s -emit-llvm -o - \
// RUN:   | FileCheck %s

// 64-bit fields need only be 32-bit aligned for arc.

typedef struct {
  int aa;
  double bb;
} s1;

// CHECK: define{{.*}} i32 @f1
// CHECK: ret i32 12
int f1(void) {
  return sizeof(s1);
}

typedef struct {
  int aa;
  long long bb;
} s2;
// CHECK: define{{.*}} i32 @f2
// CHECK: ret i32 12
int f2(void) {
  return sizeof(s2);
}