diff options
author | Eric Christopher <echristo@gmail.com> | 2014-03-06 00:00:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-03-06 00:00:53 +0000 |
commit | 411bd590d118ba84718bc72e9c770e6b4dec3dc0 (patch) | |
tree | 5e4b72b3d804bfadb4e398fbb100c29b63911781 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 13a1bb3720941f81bc049bbc470f8ac45129f4d5 (diff) | |
download | bcm5719-llvm-411bd590d118ba84718bc72e9c770e6b4dec3dc0.tar.gz bcm5719-llvm-411bd590d118ba84718bc72e9c770e6b4dec3dc0.zip |
constify a few accessors.
llvm-svn: 203032
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index c74d76a06a1..a63900a31ae 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -739,14 +739,14 @@ public: /// \brief Returns whether or not to emit tables that dwarf consumers can /// use to accelerate lookup. - bool useDwarfAccelTables() { return HasDwarfAccelTables; } + bool useDwarfAccelTables() const { return HasDwarfAccelTables; } /// \brief Returns whether or not to change the current debug info for the /// split dwarf proposal support. - bool useSplitDwarf() { return HasSplitDwarf; } + bool useSplitDwarf() const { return HasSplitDwarf; } /// \brief Returns whether or not to use AT_ranges for compilation units. - bool useCURanges() { return HasCURanges; } + bool useCURanges() const { return HasCURanges; } /// Returns the Dwarf Version. unsigned getDwarfVersion() const { return DwarfVersion; } |