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

Unified Diff: src/IceOperand.cpp

Issue 1506653002: Subzero: Add Non-SFI support for x86-32. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 12 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 | « src/IceOperand.h ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.cpp
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
index 21a4830e7c12aefa86ec607fa23eac442e594dfe..f45d2279acb7cd0bccf87abb23bf18840ce4663c 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -487,9 +487,9 @@ void ConstantRelocatable::emit(TargetLowering *Target) const {
Target->emit(this);
}
-void ConstantRelocatable::emitWithoutPrefix(
- const TargetLowering *Target) const {
- Target->emitWithoutPrefix(this);
+void ConstantRelocatable::emitWithoutPrefix(const TargetLowering *Target,
+ const char *Suffix) const {
+ Target->emitWithoutPrefix(this, Suffix);
}
void ConstantRelocatable::dump(const Cfg *Func, Ostream &Str) const {
« no previous file with comments | « src/IceOperand.h ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698