Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: src/IceInst.cpp

Issue 1866633003: Subzero: Remove a couple clumsy uses of snprintf. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Reformat Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/IceTimerTree.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.cpp
diff --git a/src/IceInst.cpp b/src/IceInst.cpp
index a30a6327a648b3c7e43f2a513e19240bd9c44b36..8412b0535b8a8fce90a1161cec7cbc78ef0019bd 100644
--- a/src/IceInst.cpp
+++ b/src/IceInst.cpp
@@ -22,6 +22,8 @@
#include "IceOperand.h"
#include "IceTargetLowering.h"
+#include "llvm/Support/Format.h"
+
namespace Ice {
namespace {
@@ -626,13 +628,11 @@ void Inst::dumpDecorated(const Cfg *Func) const {
if (!Func->isVerbose(IceV_Deleted) && (isDeleted() || isRedundantAssign()))
return;
if (Func->isVerbose(IceV_InstNumbers)) {
- char buf[30];
InstNumberT Number = getNumber();
if (Number == NumberDeleted)
- snprintf(buf, llvm::array_lengthof(buf), "[XXX]");
+ Str << "[XXX]";
else
- snprintf(buf, llvm::array_lengthof(buf), "[%3d]", Number);
- Str << buf;
+ Str << llvm::format("[%3d]", Number);
}
Str << " ";
if (isDeleted())
« no previous file with comments | « no previous file | src/IceTimerTree.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698