- Fighting with linking problem due to removing the ::ID elements. Now the

implementation .cpp files for analyses are not being included into gccas
    and friends because it is linking to the .a file and there is no explicit
    symbol reference to bring in the .o file.  The new IncludeFile hack is the
    result.

llvm-svn: 3436
This commit is contained in:
Chris Lattner 2002-08-21 23:51:51 +00:00
parent 319c47adec
commit 675e7a9e3d
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@
#include <sys/unistd.h> #include <sys/unistd.h>
#include <set> #include <set>
// IncludeFile - Stub function used to help linking out.
IncludeFile::IncludeFile(void*) {}
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// AnalysisID Class Implementation // AnalysisID Class Implementation
// //