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

Unified Diff: src/IceTargetLoweringMIPS32.h

Issue 1177873003: Removes const qualification for two methods in TargetDataLowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 6 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/IceTargetLoweringARM32.cpp ('k') | src/IceTargetLoweringMIPS32.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringMIPS32.h
diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h
index b6c325a4540ab7109afafdbf996a9a603f1c754f..3aad63f3300562785034bb354de0513fd1f27735 100644
--- a/src/IceTargetLoweringMIPS32.h
+++ b/src/IceTargetLoweringMIPS32.h
@@ -127,7 +127,7 @@ private:
~TargetMIPS32() override {}
};
-class TargetDataMIPS32 : public TargetDataLowering {
+class TargetDataMIPS32 final : public TargetDataLowering {
TargetDataMIPS32() = delete;
TargetDataMIPS32(const TargetDataMIPS32 &) = delete;
TargetDataMIPS32 &operator=(const TargetDataMIPS32 &) = delete;
@@ -137,8 +137,8 @@ public:
return std::unique_ptr<TargetDataLowering>(new TargetDataMIPS32(Ctx));
}
- void lowerGlobals(std::unique_ptr<VariableDeclarationList> Vars) const final;
- void lowerConstants() const final;
+ void lowerGlobals(std::unique_ptr<VariableDeclarationList> Vars) override;
+ void lowerConstants() override;
protected:
explicit TargetDataMIPS32(GlobalContext *Ctx);
« no previous file with comments | « src/IceTargetLoweringARM32.cpp ('k') | src/IceTargetLoweringMIPS32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698