Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

interrupt.c
// RUN: %clang_cc1 -triple avr-unknown-unknown -emit-llvm %s -o - | FileCheck %s

// CHECK: define{{.*}} void @foo(){{.*}}#0
__attribute__((interrupt)) void foo(void) { }

// CHECK: attributes #0 = {{{.*interrupt.*}}}