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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceInstMIPS32.h - MIPS32 machine instrs --*- C++ -*-----===// 1 //===- subzero/src/IceInstMIPS32.h - MIPS32 machine instrs --*- C++ -*-----===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 // violations and link errors. 1160 // violations and link errors.
1161 1161
1162 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const; 1162 template <> void InstMIPS32Mflo::emit(const Cfg *Func) const;
1163 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const; 1163 template <> void InstMIPS32Mfhi::emit(const Cfg *Func) const;
1164 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const; 1164 template <> void InstMIPS32Mtlo::emit(const Cfg *Func) const;
1165 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const; 1165 template <> void InstMIPS32Mthi::emit(const Cfg *Func) const;
1166 template <> void InstMIPS32Mult::emit(const Cfg *Func) const; 1166 template <> void InstMIPS32Mult::emit(const Cfg *Func) const;
1167 template <> void InstMIPS32Multu::emit(const Cfg *Func) const; 1167 template <> void InstMIPS32Multu::emit(const Cfg *Func) const;
1168 template <> void InstMIPS32Lui::emit(const Cfg *Func) const; 1168 template <> void InstMIPS32Lui::emit(const Cfg *Func) const;
1169 1169
1170 template <> void InstMIPS32Addiu::emitIAS(const Cfg *Func) const;
1171 template <> void InstMIPS32Slti::emitIAS(const Cfg *Func) const;
1172 template <> void InstMIPS32Sltiu::emitIAS(const Cfg *Func) const;
1173 template <> void InstMIPS32And::emitIAS(const Cfg *Func) const;
1174 template <> void InstMIPS32Andi::emitIAS(const Cfg *Func) const;
1175 template <> void InstMIPS32Or::emitIAS(const Cfg *Func) const;
1176 template <> void InstMIPS32Ori::emitIAS(const Cfg *Func) const;
1177 template <> void InstMIPS32Xor::emitIAS(const Cfg *Func) const;
1178 template <> void InstMIPS32Xori::emitIAS(const Cfg *Func) const;
1179 template <> void InstMIPS32Sll::emitIAS(const Cfg *Func) const;
1180 template <> void InstMIPS32Srl::emitIAS(const Cfg *Func) const;
1181 template <> void InstMIPS32Sra::emitIAS(const Cfg *Func) const;
1182 template <> void InstMIPS32Addu::emitIAS(const Cfg *Func) const;
1183 template <> void InstMIPS32Slt::emitIAS(const Cfg *Func) const;
1184 template <> void InstMIPS32Sltu::emitIAS(const Cfg *Func) const;
1185 template <> void InstMIPS32Sw::emitIAS(const Cfg *Func) const;
1186 template <> void InstMIPS32Lw::emitIAS(const Cfg *Func) const;
1187
1170 } // end of namespace MIPS32 1188 } // end of namespace MIPS32
1171 } // end of namespace Ice 1189 } // end of namespace Ice
1172 1190
1173 #endif // SUBZERO_SRC_ICEINSTMIPS32_H 1191 #endif // SUBZERO_SRC_ICEINSTMIPS32_H
OLDNEW
« 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