179110Sjoerg//===- lib/Support/IncludeFile.cpp - Ensure Linking Of Implementation -----===//
279110Sjoerg//
379110Sjoerg//                     The LLVM Compiler Infrastructure
479110Sjoerg//
579110Sjoerg// This file is distributed under the University of Illinois Open Source
679110Sjoerg// License. See LICENSE.TXT for details.
779110Sjoerg//
879110Sjoerg//===----------------------------------------------------------------------===//
979110Sjoerg//
1079110Sjoerg// This file implements the IncludeFile constructor.
1179110Sjoerg//
1279110Sjoerg//===----------------------------------------------------------------------===//
1379110Sjoerg
1479110Sjoerg#include "llvm/Support/IncludeFile.h"
1579110Sjoerg
1679110Sjoergusing namespace llvm;
1779110Sjoerg
1879110Sjoerg// This constructor is used to ensure linking of other modules. See the
1979110Sjoerg// llvm/Support/IncludeFile.h header for details.
2079110SjoergIncludeFile::IncludeFile(const void*) {}
2179110Sjoerg