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

Unified Diff: src/compiler/phi-reducer.h

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 years, 4 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/compiler/node-matchers.h ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/phi-reducer.h
diff --git a/src/compiler/phi-reducer.h b/src/compiler/phi-reducer.h
index a9b1450431151b94aaf4cb2cfc7c570c49890e43..5870d0433f815fed265a8fd60ae56cf916824c41 100644
--- a/src/compiler/phi-reducer.h
+++ b/src/compiler/phi-reducer.h
@@ -12,9 +12,9 @@ namespace internal {
namespace compiler {
// Replaces redundant phis if all the inputs are the same or the phi itself.
-class PhiReducer V8_FINAL : public Reducer {
+class PhiReducer FINAL : public Reducer {
public:
- virtual Reduction Reduce(Node* node) V8_OVERRIDE {
+ virtual Reduction Reduce(Node* node) OVERRIDE {
if (node->opcode() != IrOpcode::kPhi &&
node->opcode() != IrOpcode::kEffectPhi)
return NoChange();
« no previous file with comments | « src/compiler/node-matchers.h ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698