Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2008-08-04-Bitconvert.ll
; RUN: llc -march=mips < %s | FileCheck %s

define float @A(i32 %u) nounwind  {
entry:
; CHECK: mtc1 
  bitcast i32 %u to float
  ret float %0
}

define i32 @B(float %u) nounwind  {
entry:
; CHECK: mfc1 
  bitcast float %u to i32
  ret i32 %0
}