diff options
author | Florian Hahn <florian.hahn@arm.com> | 2017-07-31 10:07:49 +0000 |
---|---|---|
committer | Florian Hahn <florian.hahn@arm.com> | 2017-07-31 10:07:49 +0000 |
commit | 6b3216aad8e2125fe57a66bae9c163c41759664b (patch) | |
tree | e85f76b8e15bcaf8ff77b177c1afbf20b75cb552 /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | b4b4c0ae17a3ded41914cddb9285d11339dca2bc (diff) | |
download | llvm-6b3216aad8e2125fe57a66bae9c163c41759664b.zip llvm-6b3216aad8e2125fe57a66bae9c163c41759664b.tar.gz llvm-6b3216aad8e2125fe57a66bae9c163c41759664b.tar.bz2 |
Guard print() functions only used by dump() functions.
Summary:
Since r293359, most dump() function are only defined when
`!defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)` holds. print() functions
only used by dump() functions are now unused in release builds,
generating lots of warnings. This patch only defines some print()
functions if they are used.
Reviewers: MatzeB
Reviewed By: MatzeB
Subscribers: arsenm, mzolotukhin, nhaehnle, llvm-commits
Differential Revision: https://reviews.llvm.org/D35949
llvm-svn: 309553
Diffstat (limited to 'llvm/lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index dc02a00..b5487b6 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -2619,6 +2619,7 @@ static inline raw_ostream &operator<<(raw_ostream &OS, const ExtAddrMode &AM) { } #endif +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) void ExtAddrMode::print(raw_ostream &OS) const { bool NeedPlus = false; OS << "["; @@ -2650,7 +2651,6 @@ void ExtAddrMode::print(raw_ostream &OS) const { OS << ']'; } -#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) LLVM_DUMP_METHOD void ExtAddrMode::dump() const { print(dbgs()); dbgs() << '\n'; |