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

Unified Diff: src/IceInstX8664.cpp

Issue 1411583007: Combine allocas (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix a typo. Created 5 years, 1 month 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/IceInstX8664.cpp
diff --git a/src/IceInstX8664.cpp b/src/IceInstX8664.cpp
index 5c96aeafc37af2841dfcd943e1ee27d551a5e16d..639094d361aa33634a8c90bd48f2adb8562607c2 100644
--- a/src/IceInstX8664.cpp
+++ b/src/IceInstX8664.cpp
@@ -170,7 +170,10 @@ void MachineTraits<TargetX8664>::X86OperandMem::dump(const Cfg *Func,
MachineTraits<TargetX8664>::Address
MachineTraits<TargetX8664>::X86OperandMem::toAsmAddress(
- MachineTraits<TargetX8664>::Assembler *Asm) const {
+ MachineTraits<TargetX8664>::Assembler *Asm,
+ Ice::TargetLowering *Target) const {
+ // TODO(sehr): handle rematerializable base/index.
Jim Stichnoth 2015/11/11 17:39:44 Can you add asserts against rematerializable varia
sehr 2015/11/11 22:14:10 Done.
+ (void)Target;
int32_t Disp = 0;
AssemblerFixup *Fixup = nullptr;
// Determine the offset (is it relocatable?)

Powered by Google App Engine
This is Rietveld 408576698