aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorCarlo Kok <ck@remobjects.com>2013-08-13 17:45:53 +0000
committerCarlo Kok <ck@remobjects.com>2013-08-13 17:45:53 +0000
commite05a304e5af754e4f8b1f1a35e22ebf35f072995 (patch)
tree6c5a20ee8d0eb2ccb58ad4f01171dde9fdbb11c7 /include/llvm/CodeGen/AsmPrinter.h
parenta036a31d94ec3984ae94bee302e0714b4c3e5abb (diff)
downloadexternal_llvm-e05a304e5af754e4f8b1f1a35e22ebf35f072995.zip
external_llvm-e05a304e5af754e4f8b1f1a35e22ebf35f072995.tar.gz
external_llvm-e05a304e5af754e4f8b1f1a35e22ebf35f072995.tar.bz2
For COFF only: dwarf debug info output a label reference as a section relative item only when it's one of dw_from strp, sec_offset, ref_addr or op_call_ref instead of going by size.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 677331b..59d14cc 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -359,13 +359,15 @@ namespace llvm {
/// where the size in bytes of the directive is specified by Size and Label
/// specifies the label. This implicitly uses .set if it is available.
void EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
- unsigned Size) const;
+ unsigned Size,
+ bool IsSectionRelative = false) const;
/// EmitLabelReference - Emit something like ".long Label"
/// where the size in bytes of the directive is specified by Size and Label
/// specifies the label.
- void EmitLabelReference(const MCSymbol *Label, unsigned Size) const {
- EmitLabelPlusOffset(Label, 0, Size);
+ void EmitLabelReference(const MCSymbol *Label, unsigned Size,
+ bool IsSectionRelative = false) const {
+ EmitLabelPlusOffset(Label, 0, Size, IsSectionRelative);
}
//===------------------------------------------------------------------===//