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

Unified Diff: src/IceInstMIPS32.h

Issue 2339843002: Subzero: Fix ODR errors in the g++ build. (Closed)
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstMIPS32.h
diff --git a/src/IceInstMIPS32.h b/src/IceInstMIPS32.h
index 2254c335bd6f73e7f4c7f1fd5d0921053e7f763e..f993800f3b8e31f0c8e2d1680562e596e8de34c9 100644
--- a/src/IceInstMIPS32.h
+++ b/src/IceInstMIPS32.h
@@ -1167,6 +1167,24 @@ 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 InstMIPS32Addiu::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32And::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Andi::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Or::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Ori::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sll::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Srl::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sra::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Addu::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Slt::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sltu::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Sw::emitIAS(const Cfg *Func) const;
+template <> void InstMIPS32Lw::emitIAS(const Cfg *Func) const;
+
} // end of namespace MIPS32
} // end of namespace Ice
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698