[llvm] [JSON][NFC] Move print method out of NDEBUG || DUMP (PR #131639)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 09:29:27 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-support
Author: Nikolay Panchenko (npanchen)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/131639.diff
2 Files Affected:
- (modified) llvm/include/llvm/Support/JSON.h (+1-1)
- (modified) llvm/lib/Support/JSON.cpp (-2)
``````````diff
diff --git a/llvm/include/llvm/Support/JSON.h b/llvm/include/llvm/Support/JSON.h
index 3e3f783ffb857..7f7f5f6228763 100644
--- a/llvm/include/llvm/Support/JSON.h
+++ b/llvm/include/llvm/Support/JSON.h
@@ -472,8 +472,8 @@ class Value {
return LLVM_LIKELY(Type == T_Array) ? &as<json::Array>() : nullptr;
}
-#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
void print(llvm::raw_ostream &OS) const;
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
LLVM_DUMP_METHOD void dump() const {
print(llvm::dbgs());
llvm::dbgs() << '\n';
diff --git a/llvm/lib/Support/JSON.cpp b/llvm/lib/Support/JSON.cpp
index 98fef5dcf68a3..e7b762f550d46 100644
--- a/llvm/lib/Support/JSON.cpp
+++ b/llvm/lib/Support/JSON.cpp
@@ -182,9 +182,7 @@ void Value::destroy() {
}
}
-#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
void Value::print(llvm::raw_ostream &OS) const { OS << *this; }
-#endif // !NDEBUG || LLVM_ENABLE_DUMP
bool operator==(const Value &L, const Value &R) {
if (L.kind() != R.kind())
``````````
</details>
https://github.com/llvm/llvm-project/pull/131639
More information about the llvm-commits
mailing list