Skip to content

Commit

Permalink
Update compiler component to use renamed enums
Browse files Browse the repository at this point in the history
Use renamed enums from omr see eclipse/omr#3189

Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
  • Loading branch information
dnakamura committed Jan 24, 2019
1 parent 8e36ae2 commit 2ef2a5e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions runtime/compiler/codegen/LinkageConventions.enum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corp. and others
* Copyright (c) 2000, 2019 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -25,6 +25,6 @@
* and enumerator definitions are permitted.
*/

#include "omr/compiler/codegen/LinkageConventions.enum"
#include "codegen/OMRLinkageConventions.enum"

TR_CHelper,
4 changes: 2 additions & 2 deletions runtime/compiler/optimizer/DataFlowAnalysis.enum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corp. and others
* Copyright (c) 2000, 2019 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -25,7 +25,7 @@
* and enumerator definitions are permitted.
*/

#include "omr/compiler/optimizer/DataFlowAnalysis.enum"
#include "optimizer/OMRDataFlowAnalysis.enum"

FearPointAnalysis,
HCRGuardAnalysis,
Expand Down
4 changes: 2 additions & 2 deletions runtime/compiler/optimizer/OptimizationGroups.enum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corp. and others
* Copyright (c) 2000, 2019 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -25,7 +25,7 @@
* and enumerator definitions are permitted.
*/

#include "omr/compiler/optimizer/OptimizationGroups.enum"
#include "optimizer/OMROptimizationGroups.enum"

OPTIMIZATION(profilingGroup)

Expand Down
4 changes: 2 additions & 2 deletions runtime/compiler/optimizer/Optimizations.enum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2018 IBM Corp. and others
* Copyright (c) 2000, 2019 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand All @@ -25,7 +25,7 @@
* and enumerator definitions are permitted.
*/

#include "omr/compiler/optimizer/Optimizations.enum"
#include "optimizer/OMROptimizations.enum"

OPTIMIZATION(profileGenerator)
OPTIMIZATION(sequentialStoreSimplification)
Expand Down

0 comments on commit 2ef2a5e

Please sign in to comment.