mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 07:00:57 +00:00
Print comments with ;
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15881 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0554fb6b9c
commit
5676310c5d
@ -45,6 +45,7 @@ namespace {
|
|||||||
|
|
||||||
PPC32AsmPrinter(std::ostream &O, TargetMachine &TM)
|
PPC32AsmPrinter(std::ostream &O, TargetMachine &TM)
|
||||||
: AsmPrinter(O, TM), LabelNumber(0) {
|
: AsmPrinter(O, TM), LabelNumber(0) {
|
||||||
|
CommentChar = ";";
|
||||||
GlobalPrefix = "_";
|
GlobalPrefix = "_";
|
||||||
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
||||||
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
||||||
|
@ -45,6 +45,7 @@ namespace {
|
|||||||
|
|
||||||
PPC32AsmPrinter(std::ostream &O, TargetMachine &TM)
|
PPC32AsmPrinter(std::ostream &O, TargetMachine &TM)
|
||||||
: AsmPrinter(O, TM), LabelNumber(0) {
|
: AsmPrinter(O, TM), LabelNumber(0) {
|
||||||
|
CommentChar = ";";
|
||||||
GlobalPrefix = "_";
|
GlobalPrefix = "_";
|
||||||
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
||||||
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
||||||
|
Loading…
Reference in New Issue
Block a user