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

Unified Diff: src/IceOperand.h

Issue 1347223003: Subzero. Implements TargetDataARM32::lowerConstants. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: addresses comments. Created 5 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 | « src/IceCfg.cpp ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceOperand.h
diff --git a/src/IceOperand.h b/src/IceOperand.h
index 94bc8abe9e44c1bdd7e43f50fafbe8d9eddf00bd..3718aeed52a6429e66773383a3dad966306904ee 100644
--- a/src/IceOperand.h
+++ b/src/IceOperand.h
@@ -545,8 +545,8 @@ class Variable64On32 : public Variable {
public:
static Variable64On32 *create(Cfg *Func, Type Ty, SizeT Index) {
- return new (Func->allocate<Variable64On32>()) Variable64On32(
- kVariable64On32, Ty, Index);
+ return new (Func->allocate<Variable64On32>())
+ Variable64On32(kVariable64On32, Ty, Index);
}
void setName(Cfg *Func, const IceString &NewName) override {
@@ -591,8 +591,7 @@ public:
}
protected:
- Variable64On32(OperandKind K, Type Ty, SizeT Index)
- : Variable(K, Ty, Index) {
+ Variable64On32(OperandKind K, Type Ty, SizeT Index) : Variable(K, Ty, Index) {
assert(typeWidthInBytes(Ty) == 8);
}
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698