Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

attr-disable-sanitizer-instrumentation.c
// RUN: %clang_cc1 -debug-info-kind=limited %s -emit-llvm -o - | FileCheck %s

void t1(void) __attribute__((disable_sanitizer_instrumentation)) {
}
// CHECK: disable_sanitizer_instrumentation
// CHECK-NEXT: void @t1

// CHECK-NOT: disable_sanitizer_instrumentation
// CHECK: void @t2
void t2(void) {
}