1226633Sdim//===- lib/Support/IncludeFile.cpp - Ensure Linking Of Implementation -----===//
2218885Sdim//
3218885Sdim//                     The LLVM Compiler Infrastructure
4218885Sdim//
5218885Sdim// This file is distributed under the University of Illinois Open Source
6218885Sdim// License. See LICENSE.TXT for details.
7218885Sdim//
8218885Sdim//===----------------------------------------------------------------------===//
9218885Sdim//
10218885Sdim// This file implements the IncludeFile constructor.
11218885Sdim//
12218885Sdim//===----------------------------------------------------------------------===//
13218885Sdim
14218885Sdim#include "llvm/Support/IncludeFile.h"
15218885Sdim
16218885Sdimusing namespace llvm;
17218885Sdim
18218885Sdim// This constructor is used to ensure linking of other modules. See the
19218885Sdim// llvm/Support/IncludeFile.h header for details.
20218885SdimIncludeFile::IncludeFile(const void*) {}
21