[llvm-commits] CVS: llvm/lib/Support/IncludeFile.cpp

Reid Spencer reid at x10sys.com
Wed Jun 7 13:00:35 PDT 2006



Changes in directory llvm/lib/Support:

IncludeFile.cpp added (r1.1)
---
Log message:

For PR780: http://llvm.cs.uiuc.edu/PR780 :
Break the "IncludeFile" mechanism into its own header file and adjust other
files accordingly. Use this facility for the IntrinsicInst problem which
was the subject of PR800: http://llvm.cs.uiuc.edu/PR800 .
More to follow on this.


---
Diffs of the changes:  (+20 -0)

 IncludeFile.cpp |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+)


Index: llvm/lib/Support/IncludeFile.cpp
diff -c /dev/null llvm/lib/Support/IncludeFile.cpp:1.1
*** /dev/null	Wed Jun  7 15:00:29 2006
--- llvm/lib/Support/IncludeFile.cpp	Wed Jun  7 15:00:19 2006
***************
*** 0 ****
--- 1,20 ----
+ //===- lib/Support/IncludeFile.cpp - Ensure Linking Of Implementation -----===//
+ //
+ //                     The LLVM Compiler Infrastructure
+ //
+ // This file was developed by Reid Spencer and is distributed under the 
+ // University of Illinois Open Source License. See LICENSE.TXT for details.
+ //
+ //===----------------------------------------------------------------------===//
+ //
+ // This file implements the IncludeFile constructor.
+ //
+ //===----------------------------------------------------------------------===//
+ 
+ #include "llvm/Support/IncludeFile.h"
+ 
+ using namespace llvm;
+ 
+ // This constructor is used to ensure linking of other modules. See the
+ // llvm/Support/IncludeFile.h header for details. 
+ IncludeFile::IncludeFile(void*) {}






More information about the llvm-commits mailing list