Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

invalid-atomicrmw-fsub-must-be-fp-type.ll
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s

; CHECK: error: atomicrmw fsub operand must be a floating point type
define void @f(i32* %ptr) {
  atomicrmw fsub i32* %ptr, i32 2 seq_cst
  ret void
}