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

Unified Diff: src/IceOperand.cpp

Issue 1665263003: Subzero. ARM32. Nonsfi. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 10 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
Index: src/IceOperand.cpp
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
index ff1de640e9a69c47d70085bd216a3a64443c9e55..f4b58064432cf28d0be38afca6a2376628599ae0 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -554,6 +554,10 @@ void ConstantRelocatable::emitWithoutPrefix(const TargetLowering *Target,
void ConstantRelocatable::dump(const Cfg *Func, Ostream &Str) const {
if (!BuildDefs::dump())
return;
+ if (!EmitString.empty()) {
+ Str << EmitString;
+ return;
+ }
Str << "@";
if (Func && !SuppressMangling) {
Str << Func->getContext()->mangleName(Name);
« no previous file with comments | « src/IceInstARM32.cpp ('k') | src/IceTargetLowering.cpp » ('j') | src/IceTargetLoweringARM32.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698