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

Unified Diff: src/IceAssemblerARM32.h

Issue 1179563004: Renames the assembler* files. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes the top comment for IceAssemblerX8632.cpp 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/IceAssembler.cpp ('k') | src/IceAssemblerX8632.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssemblerARM32.h
diff --git a/src/assembler_arm32.h b/src/IceAssemblerARM32.h
similarity index 89%
rename from src/assembler_arm32.h
rename to src/IceAssemblerARM32.h
index 54eadec1bab35509c4d43ebe87a646580a7a78d1..a0322041ba60d0ea418acc5db78a7702fd1a1a85 100644
--- a/src/assembler_arm32.h
+++ b/src/IceAssemblerARM32.h
@@ -1,4 +1,4 @@
-//===- subzero/src/assembler_arm32.h - Assembler for ARM32 ------*- C++ -*-===//
+//===- subzero/src/IceAssemblerARM32.h - Assembler for ARM32 ----*- C++ -*-===//
//
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -19,14 +19,13 @@
//
//===----------------------------------------------------------------------===//
-#ifndef SUBZERO_SRC_ASSEMBLER_ARM32_H
-#define SUBZERO_SRC_ASSEMBLER_ARM32_H
+#ifndef SUBZERO_SRC_ICEASSEMBLERARM32_H
+#define SUBZERO_SRC_ICEASSEMBLERARM32_H
+#include "IceAssembler.h"
#include "IceDefs.h"
#include "IceFixups.h"
-#include "assembler.h"
-
namespace Ice {
namespace ARM32 {
@@ -60,7 +59,7 @@ public:
llvm_unreachable("Not yet implemented.");
}
- void BindCfgNodeLabel(SizeT NodeNumber) override {
+ void bindCfgNodeLabel(SizeT NodeNumber) override {
(void)NodeNumber;
llvm_unreachable("Not yet implemented.");
}
@@ -74,4 +73,4 @@ public:
} // end of namespace ARM32
} // end of namespace Ice
-#endif // SUBZERO_SRC_ASSEMBLER_ARM32_H
+#endif // SUBZERO_SRC_ICEASSEMBLERARM32_H
« no previous file with comments | « src/IceAssembler.cpp ('k') | src/IceAssemblerX8632.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698