mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00: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! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15896 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
30bad4af40
commit
b6e678b1c8
@ -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"),
|
||||
|
Loading…
Reference in New Issue
Block a user