move a virtual method body to its .cpp file to avoid a #include
authorChris Lattner <sabre@nondot.org>
Sun, 2 Aug 2009 04:58:19 +0000 (04:58 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 2 Aug 2009 04:58:19 +0000 (04:58 +0000)
in a header.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77874 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetInstrInfo.h
lib/Target/TargetInstrInfo.cpp

index c47b418f9a3a4ecc1ef2acd12b1ad1a40efefd69..41a344d9e98db942908d5010a5039d65cd3bfda0 100644 (file)
@@ -14,7 +14,6 @@
 #ifndef LLVM_TARGET_TARGETINSTRINFO_H
 #define LLVM_TARGET_TARGETINSTRINFO_H
 
-#include "llvm/Support/ErrorHandling.h"
 #include "llvm/Target/TargetInstrDesc.h"
 #include "llvm/CodeGen/MachineFunction.h"
 
@@ -406,10 +405,8 @@ public:
   /// insertNoop - Insert a noop into the instruction stream at the specified
   /// point.
   virtual void insertNoop(MachineBasicBlock &MBB, 
-                          MachineBasicBlock::iterator MI) const {
-    llvm_unreachable("Target didn't implement insertNoop!");
-  }
-
+                          MachineBasicBlock::iterator MI) const;
+  
   /// isPredicated - Returns true if the instruction is already predicated.
   ///
   virtual bool isPredicated(const MachineInstr *MI) const {
index 0f1ade2b9f9250628bbdc20b0054f608f8ea13ab..ad5a9d71da49ff7b5693ca7c005e9c6354461b1f 100644 (file)
@@ -13,8 +13,7 @@
 
 #include "llvm/Target/TargetInstrInfo.h"
 #include "llvm/Target/TargetRegisterInfo.h"
-#include "llvm/Constant.h"
-#include "llvm/DerivedTypes.h"
+#include "llvm/Support/ErrorHandling.h"
 using namespace llvm;
 
 TargetInstrInfo::TargetInstrInfo(const TargetInstrDesc* Desc,
@@ -25,6 +24,14 @@ TargetInstrInfo::TargetInstrInfo(const TargetInstrDesc* Desc,
 TargetInstrInfo::~TargetInstrInfo() {
 }
 
+/// insertNoop - Insert a noop into the instruction stream at the specified
+/// point.
+void TargetInstrInfo::insertNoop(MachineBasicBlock &MBB, 
+                                 MachineBasicBlock::iterator MI) const {
+  llvm_unreachable("Target didn't implement insertNoop!");
+}
+
+
 bool TargetInstrInfo::isUnpredicatedTerminator(const MachineInstr *MI) const {
   const TargetInstrDesc &TID = MI->getDesc();
   if (!TID.isTerminator()) return false;