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

Unified Diff: src/assembler_ia32.cpp

Issue 647193003: emitIAS for store and indirect calls. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: stuff Created 6 years, 2 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/assembler_ia32.cpp
diff --git a/src/assembler_ia32.cpp b/src/assembler_ia32.cpp
index a253b8d4689f51d9bf9d1c203c73912de8d7349a..9042cf1b4451c2742463b9de7708433a417a3acf 100644
--- a/src/assembler_ia32.cpp
+++ b/src/assembler_ia32.cpp
@@ -75,13 +75,6 @@ void AssemblerX86::call(const Address &address) {
EmitOperand(2, address);
}
-void AssemblerX86::call(Label *label) {
- AssemblerBuffer::EnsureCapacity ensured(&buffer_);
- EmitUint8(0xE8);
- static const int kSize = 5;
- EmitLabel(label, kSize);
-}
-
void AssemblerX86::call(const ConstantRelocatable *label) {
AssemblerBuffer::EnsureCapacity ensured(&buffer_);
intptr_t call_start = buffer_.GetPosition();

Powered by Google App Engine
This is Rietveld 408576698