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