diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index b4bb8ec..3ec55ee 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -56,10 +56,6 @@ namespace llvm { /// section on this target. Null if this target doesn't support zerofill. const char *ZeroFillDirective; // Default is null. - /// AddressSize - Size of addresses used in file. - /// - unsigned AddressSize; // Defaults to 4. - /// NeedsSet - True if target asm can't compute addresses on data /// directives. bool NeedsSet; // Defaults to false. @@ -400,9 +396,6 @@ namespace llvm { const char *getZeroFillDirective() const { return ZeroFillDirective; } - unsigned getAddressSize() const { - return AddressSize; - } bool needsSet() const { return NeedsSet; } |