diff options
author | Eric Christopher <echristo@apple.com> | 2012-07-27 22:00:05 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-07-27 22:00:05 +0000 |
commit | 86ca9f9e116e2cf3c5ac353e889e176f56d4a468 (patch) | |
tree | 6bc4290c1de720e56f976192d26ddcf48b54e6aa /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 7dfe7abdee1ef1f11329543b5dc7cf94206d0b2e (diff) | |
download | bcm5719-llvm-86ca9f9e116e2cf3c5ac353e889e176f56d4a468.tar.gz bcm5719-llvm-86ca9f9e116e2cf3c5ac353e889e176f56d4a468.zip |
Add a DW_AT_high_pc for CUs that are a single address range. Update
all tests accordingly.
Fixes PR13351.
Patch by shinichiro hamaji!
llvm-svn: 160899
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index d1d65126550..5b8f61c52ef 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -307,6 +307,9 @@ class DwarfDebug { // table for the same directory as DW_at_comp_dir. StringRef CompilationDir; + // True if the current module has non text section. + bool HasNonTextSection; + private: /// assignAbbrevNumber - Define a unique number for the abbreviation. |