mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add a new flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9787c6443f
commit
291ca1c563
@ -148,6 +148,10 @@ namespace llvm {
|
||||
/// argument that specifies the alignment of the declaration.
|
||||
bool COMMDirectiveTakesAlignment; // Defaults to true.
|
||||
|
||||
/// HasDotTypeDotSizeDirective - True if the target has .type and .size
|
||||
/// directives, this is true for most ELF targets.
|
||||
bool HasDotTypeDotSizeDirective; // Defaults to true.
|
||||
|
||||
AsmPrinter(std::ostream &o, TargetMachine &tm)
|
||||
: FunctionNumber(0), O(o), TM(tm),
|
||||
CommentString("#"),
|
||||
@ -170,7 +174,8 @@ namespace llvm {
|
||||
ConstantPoolSection("\t.section .rodata\n"),
|
||||
LCOMMDirective(0),
|
||||
COMMDirective("\t.comm\t"),
|
||||
COMMDirectiveTakesAlignment(true) {
|
||||
COMMDirectiveTakesAlignment(true),
|
||||
HasDotTypeDotSizeDirective(true) {
|
||||
}
|
||||
|
||||
/// SwitchSection - Switch to the specified section of the executable if we
|
||||
|
Loading…
Reference in New Issue
Block a user