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

Unified Diff: src/IceTargetLoweringMIPS32.h

Issue 1176133004: implement the null function for the Mips32 subzero compiler (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixing patch per review comments Created 5 years, 5 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/IceTargetLoweringMIPS32.h
diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h
index f872af0f35a059cf4854ed83f479e0c8af15e40f..a72c8dbfb388658bfaf39a67aea6cdbe4fabe1fd 100644
--- a/src/IceTargetLoweringMIPS32.h
+++ b/src/IceTargetLoweringMIPS32.h
@@ -76,6 +76,9 @@ public:
(void)C;
llvm::report_fatal_error("Not yet implemented");
}
+ void _ret(Variable *RA, Variable *Src0 = nullptr) {
+ Context.insert(InstMIPS32Ret::create(Func, RA, Src0));
+ }
void lowerArguments() override;
void addProlog(CfgNode *Node) override;

Powered by Google App Engine
This is Rietveld 408576698