2011-10-11 20:02:52 +00:00
|
|
|
//===- lib/Support/IncludeFile.cpp - Ensure Linking Of Implementation -----===//
|
2006-06-07 20:00:19 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-06-07 20:00:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the IncludeFile constructor.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/IncludeFile.h"
|
2006-06-07 20:00:19 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
// This constructor is used to ensure linking of other modules. See the
|
2010-11-29 19:44:50 +00:00
|
|
|
// llvm/Support/IncludeFile.h header for details.
|
2008-03-21 23:38:23 +00:00
|
|
|
IncludeFile::IncludeFile(const void*) {}
|