Raw File
2003-11-11-ImplicitRename.ll
; RUN: not llvm-as < %s >& /dev/null

void %test() {
  %X = add int 0, 1
  %X = add int 1, 2
  ret void
}

back to top