llvm::printLLVMNameWithoutPrefix

Print out a name of an LLVM value without any prefixes.

Synopsis

Declared in <llvm/IR/IRPrintingPasses.h>

void
printLLVMNameWithoutPrefix(
    raw_ostream& OS,
    StringRef Name);

Description

The name is surrounded with ""'s and escaped if it has any special or non-printable characters in it.

Parameters

NameDescription
OSThe stream to write the name to.
NameThe LLVM value name to print.