Expand documentation of StringConstantPrefix.

llvm-svn: 51911
This commit is contained in:
Dale Johannesen 2008-06-03 18:15:03 +00:00
parent 83e468ae23
commit 4c75de7f39
1 changed files with 4 additions and 2 deletions

View File

@ -147,8 +147,10 @@ namespace llvm {
/// AssemblerDialect - Which dialect of an assembler variant to use.
unsigned AssemblerDialect; // Defaults to 0
/// StringConstantPrefix - Prefix to use when generating unnamed
/// constant strings. These names get run through the Mangler later.
/// StringConstantPrefix - Prefix for FEs to use when generating unnamed
/// constant strings. These names get run through the Mangler later; if
/// you want the Mangler not to add the GlobalPrefix as well,
/// use '\1' as the first character.
const char *StringConstantPrefix; // Defaults to ".str"
//===--- Data Emission Directives -------------------------------------===//