commit | 3d8efa4f0c3cb8fdcd5e052c081786f2b9aaaf8b | [log] [tgz] |
---|---|---|
author | Marina Yatsina <marina.yatsina@intel.com> | Mon Jan 22 10:06:33 2018 +0000 |
committer | Marina Yatsina <marina.yatsina@intel.com> | Mon Jan 22 10:06:33 2018 +0000 |
tree | 3457077b05deeb0957a3bf4844e881e79fe1db4c | |
parent | c757c0b6baa0a0e40da91ace8f29078fb04dcdd0 [diff] |
Rename ExecutionDepsFix files to ExecutionDomainFix This is the one of multiple patches that fix bugzilla https://bugs.llvm.org/show_bug.cgi?id=33869 Most of the patches are intended at refactoring the existent code. Additional relevant reviews: https://reviews.llvm.org/D40330 https://reviews.llvm.org/D40331 https://reviews.llvm.org/D40333 https://reviews.llvm.org/D40334 Differential Revision: https://reviews.llvm.org/D40332 Change-Id: I6a048cca7fdafbfc42fb1bac94343e483befded8 llvm-svn: 323094
diff --git a/llvm/lib/CodeGen/CMakeLists.txt b/llvm/lib/CodeGen/CMakeLists.txt index 3aeb491..8b8f8d0 100644 --- a/llvm/lib/CodeGen/CMakeLists.txt +++ b/llvm/lib/CodeGen/CMakeLists.txt
@@ -18,7 +18,7 @@ DwarfEHPrepare.cpp EarlyIfConversion.cpp EdgeBundles.cpp - ExecutionDepsFix.cpp + ExecutionDomainFix.cpp ExpandISelPseudos.cpp ExpandMemCmp.cpp ExpandPostRAPseudos.cpp
diff --git a/llvm/lib/CodeGen/ExecutionDepsFix.cpp b/llvm/lib/CodeGen/ExecutionDomainFix.cpp similarity index 99% rename from llvm/lib/CodeGen/ExecutionDepsFix.cpp rename to llvm/lib/CodeGen/ExecutionDomainFix.cpp index 1446b88..47ff393 100644 --- a/llvm/lib/CodeGen/ExecutionDepsFix.cpp +++ b/llvm/lib/CodeGen/ExecutionDomainFix.cpp
@@ -1,4 +1,4 @@ -//===- ExecutionDepsFix.cpp - Fix execution dependecy issues ----*- C++ -*-===// +//===- ExecutionDepsFix.cpp - Fix execution domain issues ----*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "llvm/CodeGen/ExecutionDepsFix.h" +#include "llvm/CodeGen/ExecutionDomainFix.h" #include "llvm/ADT/PostOrderIterator.h" #include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/CodeGen/TargetInstrInfo.h"