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

Unified Diff: src/crankshaft/arm64/delayed-masm-arm64-inl.h

Issue 2896303003: Reland of Reland of "ARM64: Add NEON support" (Closed)
Patch Set: 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/crankshaft/arm64/delayed-masm-arm64.h ('k') | src/crankshaft/arm64/lithium-codegen-arm64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/arm64/delayed-masm-arm64-inl.h
diff --git a/src/crankshaft/arm64/delayed-masm-arm64-inl.h b/src/crankshaft/arm64/delayed-masm-arm64-inl.h
index c8299ec07e3592ad18a07fa9f3f83cc5261b4ee5..8932c61a9bba87f7f25dded708d91ca6277127b5 100644
--- a/src/crankshaft/arm64/delayed-masm-arm64-inl.h
+++ b/src/crankshaft/arm64/delayed-masm-arm64-inl.h
@@ -44,14 +44,12 @@ void DelayedMasm::Mov(const Register& rd,
__ Mov(rd, operand, discard_mode);
}
-
-void DelayedMasm::Fmov(FPRegister fd, FPRegister fn) {
+void DelayedMasm::Fmov(VRegister fd, VRegister fn) {
EmitPending();
__ Fmov(fd, fn);
}
-
-void DelayedMasm::Fmov(FPRegister fd, double imm) {
+void DelayedMasm::Fmov(VRegister fd, double imm) {
EmitPending();
__ Fmov(fd, imm);
}
« no previous file with comments | « src/crankshaft/arm64/delayed-masm-arm64.h ('k') | src/crankshaft/arm64/lithium-codegen-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698