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

Unified Diff: src/arm64/macro-assembler-arm64-inl.h

Issue 2900683002: [compiler] Delay allocation of code-embedded heap numbers. (Closed)
Patch Set: Fix rebase. Created 3 years, 7 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/arm64/macro-assembler-arm64.cc ('k') | src/assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/macro-assembler-arm64-inl.h
diff --git a/src/arm64/macro-assembler-arm64-inl.h b/src/arm64/macro-assembler-arm64-inl.h
index e2fbc8f4af9bcf1b1d1879c3054a32bef5c9d8ca..d4cb3b7cd87e239c93606c569561688b5151528f 100644
--- a/src/arm64/macro-assembler-arm64-inl.h
+++ b/src/arm64/macro-assembler-arm64-inl.h
@@ -877,10 +877,9 @@ void MacroAssembler::Isb() {
isb();
}
-
-void MacroAssembler::Ldr(const CPURegister& rt, const Immediate& imm) {
+void MacroAssembler::Ldr(const CPURegister& rt, const Operand& operand) {
DCHECK(allow_macro_instructions_);
- ldr(rt, imm);
+ ldr(rt, operand);
}
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698