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