Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

test_g_rotr_rotl.mir
# RUN: not --crash llc -march=arm64 -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
# REQUIRES: aarch64-registered-target
---
name:            test_uniform
body: |
  bb.0:
    %src:_(<2 x s64>) = G_IMPLICIT_DEF
    %amt:_(s64) = G_IMPLICIT_DEF

    ; CHECK: Shifts and rotates require operands to be either all scalars or all vectors
    %rotr:_(<2 x s64>) = G_ROTR %src, %amt

...