summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-10-08 18:30:22 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-10-08 18:30:22 +0000
commit7ced638072bd737581be7b1b19f7115e66ab6f84 (patch)
treee1b301160914833f396881ddd8de6ad2e87dc36d
parent41605ab6e7879c0b1d997f0ca41b7f3fc30da717 (diff)
downloadllvm-7ced638072bd737581be7b1b19f7115e66ab6f84.tar.gz
llvm-7ced638072bd737581be7b1b19f7115e66ab6f84.tar.bz2
llvm-7ced638072bd737581be7b1b19f7115e66ab6f84.tar.xz
Adjust paths due to moving InstrSched to lib/Target/SparcV9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16852 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/InstrSched/InstrScheduling.cpp6
-rw-r--r--lib/Target/SparcV9/InstrSched/SchedGraph.cpp6
-rw-r--r--lib/Target/SparcV9/InstrSched/SchedPriorities.cpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/Target/SparcV9/InstrSched/InstrScheduling.cpp b/lib/Target/SparcV9/InstrSched/InstrScheduling.cpp
index 69ecb90f31..84c8611683 100644
--- a/lib/Target/SparcV9/InstrSched/InstrScheduling.cpp
+++ b/lib/Target/SparcV9/InstrSched/InstrScheduling.cpp
@@ -17,9 +17,9 @@
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/Target/TargetMachine.h"
-#include "../../Target/SparcV9/MachineCodeForInstruction.h"
-#include "../../Target/SparcV9/LiveVar/FunctionLiveVarInfo.h"
-#include "../../Target/SparcV9/SparcV9InstrInfo.h"
+#include "../MachineCodeForInstruction.h"
+#include "../LiveVar/FunctionLiveVarInfo.h"
+#include "../SparcV9InstrInfo.h"
#include "llvm/Support/CommandLine.h"
#include <algorithm>
#include <iostream>
diff --git a/lib/Target/SparcV9/InstrSched/SchedGraph.cpp b/lib/Target/SparcV9/InstrSched/SchedGraph.cpp
index 00b48d537d..b51d153391 100644
--- a/lib/Target/SparcV9/InstrSched/SchedGraph.cpp
+++ b/lib/Target/SparcV9/InstrSched/SchedGraph.cpp
@@ -19,9 +19,9 @@
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h"
-#include "../../Target/SparcV9/MachineCodeForInstruction.h"
-#include "../../Target/SparcV9/SparcV9RegInfo.h"
-#include "../../Target/SparcV9/SparcV9InstrInfo.h"
+#include "../MachineCodeForInstruction.h"
+#include "../SparcV9RegInfo.h"
+#include "../SparcV9InstrInfo.h"
#include "llvm/ADT/STLExtras.h"
#include <iostream>
diff --git a/lib/Target/SparcV9/InstrSched/SchedPriorities.cpp b/lib/Target/SparcV9/InstrSched/SchedPriorities.cpp
index 0aaece228d..33788b1118 100644
--- a/lib/Target/SparcV9/InstrSched/SchedPriorities.cpp
+++ b/lib/Target/SparcV9/InstrSched/SchedPriorities.cpp
@@ -18,7 +18,7 @@
//===----------------------------------------------------------------------===//
#include "SchedPriorities.h"
-#include "../../Target/SparcV9/LiveVar/FunctionLiveVarInfo.h"
+#include "../LiveVar/FunctionLiveVarInfo.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/Support/CFG.h"
#include "llvm/ADT/PostOrderIterator.h"