1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Alkis pointed out that this is not a character (we actually support strings)

and as such, we should use self revealing names.  Hey, makes sense to me!

llvm-svn: 15896
This commit is contained in:
Chris Lattner 2004-08-18 02:22:34 +00:00
parent 34334091d5
commit 17411aae8b

View File

@ -45,9 +45,9 @@ namespace llvm {
// Properties to be set by the derived class ctor, used to configure the
// asmwriter.
/// CommentChar - This indicates the comment character used by the
/// CommentString - This indicates the comment character used by the
/// assembler.
const char *CommentChar; // Defaults to "#"
const char *CommentString; // Defaults to "#"
/// GlobalPrefix - If this is set to a non-empty string, it is prepended
/// onto all global symbols. This is often used for "_" or ".".
@ -84,7 +84,7 @@ namespace llvm {
AsmPrinter(std::ostream &o, TargetMachine &tm)
: O(o), TM(tm),
CommentChar("#"),
CommentString("#"),
GlobalPrefix(""),
ZeroDirective("\t.zero\t"),
AsciiDirective("\t.ascii\t"),