summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-07 23:20:15 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-07 23:20:15 +0000
commitdc4f6bea6ca3ddb621544b3fbf86914e542b5156 (patch)
tree7c95654c3ded370db40a4c79d9b258356451d5d6
parent05445e30aa95ca53c55ab050fbabc8ca14631516 (diff)
downloadllvm-dc4f6bea6ca3ddb621544b3fbf86914e542b5156.tar.gz
llvm-dc4f6bea6ca3ddb621544b3fbf86914e542b5156.tar.bz2
llvm-dc4f6bea6ca3ddb621544b3fbf86914e542b5156.tar.xz
Remove the use of "IncludeFile" from this support facility. The mechanism
to build a loadable module is now correctly defined and documented so this workaround isn't needed any longer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29553 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/SlowOperationInformer.h3
-rw-r--r--lib/Support/SlowOperationInformer.cpp3
2 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Support/SlowOperationInformer.h b/include/llvm/Support/SlowOperationInformer.h
index 0be01960ca..d05792672a 100644
--- a/include/llvm/Support/SlowOperationInformer.h
+++ b/include/llvm/Support/SlowOperationInformer.h
@@ -32,7 +32,6 @@
#include <string>
#include <cassert>
#include "llvm/Support/DataTypes.h"
-#include "llvm/System/IncludeFile.h"
namespace llvm {
class SlowOperationInformer {
@@ -64,5 +63,3 @@ namespace llvm {
} // end namespace llvm
#endif /* SLOW_OPERATION_INFORMER_H */
-
-FORCE_DEFINING_FILE_TO_BE_LINKED(SupportSlowOperationInformer)
diff --git a/lib/Support/SlowOperationInformer.cpp b/lib/Support/SlowOperationInformer.cpp
index c5f2718701..bfdfe8808f 100644
--- a/lib/Support/SlowOperationInformer.cpp
+++ b/lib/Support/SlowOperationInformer.cpp
@@ -12,7 +12,6 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/SlowOperationInformer.h"
-#include "llvm/System/IncludeFile.h"
#include "llvm/System/Alarm.h"
#include <iostream>
#include <sstream>
@@ -65,5 +64,3 @@ bool SlowOperationInformer::progress(unsigned Amount) {
std::cout << ToPrint+OS.str() << std::flush;
return false;
}
-
-DEFINING_FILE_FOR(SupportSlowOperationInformer)