diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-20 19:43:21 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-20 19:43:21 +0000 |
commit | b576c94c15af9a440f69d9d03c2afead7971118c (patch) | |
tree | e65f0c78d088586d53308233247affead783d44b /lib/Support | |
parent | ce439b539f448c4ded3df632e93ef853a503d594 (diff) |
Added LLVM project notice to the top of every C++ source file.
Header files will be on the way.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Annotation.cpp | 7 | ||||
-rw-r--r-- | lib/Support/CommandLine.cpp | 7 | ||||
-rw-r--r-- | lib/Support/ConstantRange.cpp | 7 | ||||
-rw-r--r-- | lib/Support/Debug.cpp | 7 | ||||
-rw-r--r-- | lib/Support/DynamicLinker.cpp | 7 | ||||
-rw-r--r-- | lib/Support/FileUtilities.cpp | 7 | ||||
-rw-r--r-- | lib/Support/LeakDetector.cpp | 7 | ||||
-rw-r--r-- | lib/Support/Mangler.cpp | 7 | ||||
-rw-r--r-- | lib/Support/PluginLoader.cpp | 7 | ||||
-rw-r--r-- | lib/Support/Signals.cpp | 7 | ||||
-rw-r--r-- | lib/Support/Statistic.cpp | 7 | ||||
-rw-r--r-- | lib/Support/SystemUtils.cpp | 7 | ||||
-rw-r--r-- | lib/Support/Timer.cpp | 7 | ||||
-rw-r--r-- | lib/Support/ToolRunner.cpp | 7 | ||||
-rw-r--r-- | lib/Support/ValueHolder.cpp | 7 |
15 files changed, 105 insertions, 0 deletions
diff --git a/lib/Support/Annotation.cpp b/lib/Support/Annotation.cpp index 1b42aae142..890b18de06 100644 --- a/lib/Support/Annotation.cpp +++ b/lib/Support/Annotation.cpp @@ -1,4 +1,11 @@ //===-- Annotation.cpp - Implement the Annotation Classes -----------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements the AnnotationManager class. // diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 807ff165b0..de895c9117 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -1,4 +1,11 @@ //===-- CommandLine.cpp - Command line parser implementation --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This class implements a command line argument processor that is useful when // creating a tool. It provides a simple, minimalistic interface that is easily diff --git a/lib/Support/ConstantRange.cpp b/lib/Support/ConstantRange.cpp index c9d8ae6fbb..a9e1204de5 100644 --- a/lib/Support/ConstantRange.cpp +++ b/lib/Support/ConstantRange.cpp @@ -1,4 +1,11 @@ //===-- ConstantRange.cpp - ConstantRange implementation ------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // Represent a range of possible values that may occur when the program is run // for an integral value. This keeps track of a lower and upper bound for the diff --git a/lib/Support/Debug.cpp b/lib/Support/Debug.cpp index f87cddfe4e..895abbb1f7 100644 --- a/lib/Support/Debug.cpp +++ b/lib/Support/Debug.cpp @@ -1,4 +1,11 @@ //===-- Debug.cpp - An easy way to add debug output to your code ----------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements a handle way of adding debugging information to your // code, without it being enabled all of the time, and without having to add diff --git a/lib/Support/DynamicLinker.cpp b/lib/Support/DynamicLinker.cpp index 7c52d3bb5b..05a63f3d76 100644 --- a/lib/Support/DynamicLinker.cpp +++ b/lib/Support/DynamicLinker.cpp @@ -1,4 +1,11 @@ //===-- DynamicLinker.cpp - Implement DynamicLinker interface -------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // Lightweight interface to dynamic library linking and loading, and dynamic // symbol lookup functionality, in whatever form the operating system diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index ca4603628c..5d30cc8c89 100644 --- a/lib/Support/FileUtilities.cpp +++ b/lib/Support/FileUtilities.cpp @@ -1,4 +1,11 @@ //===- Support/FileUtilities.cpp - File System Utilities ------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements a family of utility functions which are useful for doing // various things with files. diff --git a/lib/Support/LeakDetector.cpp b/lib/Support/LeakDetector.cpp index ecc4868d2e..24c946ab6e 100644 --- a/lib/Support/LeakDetector.cpp +++ b/lib/Support/LeakDetector.cpp @@ -1,4 +1,11 @@ //===-- LeakDetector.cpp - Implement LeakDetector interface ---------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements the LeakDetector class. // diff --git a/lib/Support/Mangler.cpp b/lib/Support/Mangler.cpp index d9186a9c93..44c697d3d8 100644 --- a/lib/Support/Mangler.cpp +++ b/lib/Support/Mangler.cpp @@ -1,4 +1,11 @@ //===-- Mangler.cpp - Self-contained c/asm llvm name mangler --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // Unified name mangler for CWriter and assembly backends. // diff --git a/lib/Support/PluginLoader.cpp b/lib/Support/PluginLoader.cpp index 4cacd01613..1582a10c65 100644 --- a/lib/Support/PluginLoader.cpp +++ b/lib/Support/PluginLoader.cpp @@ -1,4 +1,11 @@ //===-- PluginLoader.cpp - Implement -load command line option ------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements the -load <plugin> command line option processor. When // linked into a program, this new command line option is available that allows diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp index 563147eabf..efc5f71257 100644 --- a/lib/Support/Signals.cpp +++ b/lib/Support/Signals.cpp @@ -1,4 +1,11 @@ //===- Signals.cpp - Signal Handling support ------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file defines some helpful functions for dealing with the possibility of // Unix signals occuring while your program is running. diff --git a/lib/Support/Statistic.cpp b/lib/Support/Statistic.cpp index ae9f57f80e..c60a85cdeb 100644 --- a/lib/Support/Statistic.cpp +++ b/lib/Support/Statistic.cpp @@ -1,4 +1,11 @@ //===-- Statistic.cpp - Easy way to expose stats information --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements the 'Statistic' class, which is designed to be an easy // way to expose various success metrics from passes. These statistics are diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp index e1af3f92ce..8c009ffb57 100644 --- a/lib/Support/SystemUtils.cpp +++ b/lib/Support/SystemUtils.cpp @@ -1,4 +1,11 @@ //===- SystemUtils.h - Utilities to do low-level system stuff --*- C++ -*--===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file contains functions used to do a variety of low-level, often // system-specific, tasks. diff --git a/lib/Support/Timer.cpp b/lib/Support/Timer.cpp index 30a7fbb3bd..5e84f38852 100644 --- a/lib/Support/Timer.cpp +++ b/lib/Support/Timer.cpp @@ -1,4 +1,11 @@ //===-- Timer.cpp - Interval Timing Support -------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // Interval Timing implementation. // diff --git a/lib/Support/ToolRunner.cpp b/lib/Support/ToolRunner.cpp index 4ae896bd99..a66b868c22 100644 --- a/lib/Support/ToolRunner.cpp +++ b/lib/Support/ToolRunner.cpp @@ -1,4 +1,11 @@ //===-- ToolRunner.cpp ----------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This file implements the interfaces described in the ToolRunner.h file. // diff --git a/lib/Support/ValueHolder.cpp b/lib/Support/ValueHolder.cpp index e0806b538a..8661402b06 100644 --- a/lib/Support/ValueHolder.cpp +++ b/lib/Support/ValueHolder.cpp @@ -1,4 +1,11 @@ //===-- ValueHolder.cpp - Wrapper for Value implementation ----------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// // // This class defines a simple subclass of User, which keeps a pointer to a // Value, which automatically updates when Value::replaceAllUsesWith is called. |