Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

gnu-inline.cu
// RUN: %clang_cc1 -fsyntax-only -verify %s

#include "Inputs/cuda.h"

// expected-no-diagnostics

// Check that we can handle gnu_inline functions when compiling in CUDA mode.

void foo();
extern inline __attribute__((gnu_inline)) void bar() { foo(); }