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

Unified Diff: src/IceInstMIPS32.h

Issue 2341713003: Subzero, MIPS32: Floating point support in ELF output (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 3 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/IceInstMIPS32.h
diff --git a/src/IceInstMIPS32.h b/src/IceInstMIPS32.h
index a4660592747bed11cde48086a3f3338e1c19dbcf..3e41eb397b75668121de3a8350be4a46eeb2aaa5 100644
--- a/src/IceInstMIPS32.h
+++ b/src/IceInstMIPS32.h
@@ -1179,6 +1179,14 @@ template <> void InstMIPS32Mult::emit(const Cfg *Func) const;
template <> void InstMIPS32Multu::emit(const Cfg *Func) const;
template <> void InstMIPS32Lui::emit(const Cfg *Func) const;
+template <> void InstMIPS32Add_d::emitIAS(const Cfg *Func) const;
Jim Stichnoth 2016/09/15 04:53:45 Thanks for this! :) (after learning again, the ha
obucinac 2016/09/15 13:35:06 Acknowledged.
+template <> void InstMIPS32Add_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Div_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Div_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Mul_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Mul_s::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sub_d::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sub_s::emitIAS(const Cfg *Func) const;
template <> void InstMIPS32Addiu::emitIAS(const Cfg *Func) const;
template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const;
template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const;

Powered by Google App Engine
This is Rietveld 408576698