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 | 482202a601208cac2951cc6823c7c62bb0235f76 (patch) | |
tree | e40eab2f9a1b790857e3db0536d9f36fe93eee18 /llvm/lib/Support | |
parent | d77dd78c52723edc243a20fa2627290cc0b49805 (diff) | |
download | bcm5719-llvm-482202a601208cac2951cc6823c7c62bb0235f76.tar.gz bcm5719-llvm-482202a601208cac2951cc6823c7c62bb0235f76.zip |
Added LLVM project notice to the top of every C++ source file.
Header files will be on the way.
llvm-svn: 9298
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Annotation.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/CommandLine.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/ConstantRange.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/Debug.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/DynamicLinker.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/FileUtilities.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/LeakDetector.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/Mangler.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/PluginLoader.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/Signals.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/Statistic.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/SystemUtils.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/Timer.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/ToolRunner.cpp | 7 | ||||
-rw-r--r-- | llvm/lib/Support/ValueHolder.cpp | 7 |
15 files changed, 105 insertions, 0 deletions
diff --git a/llvm/lib/Support/Annotation.cpp b/llvm/lib/Support/Annotation.cpp index 1b42aae142f..890b18de06c 100644 --- a/llvm/lib/Support/Annotation.cpp +++ b/llvm/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/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index 807ff165b09..de895c91176 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/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/llvm/lib/Support/ConstantRange.cpp b/llvm/lib/Support/ConstantRange.cpp index c9d8ae6fbbc..a9e1204de52 100644 --- a/llvm/lib/Support/ConstantRange.cpp +++ b/llvm/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/llvm/lib/Support/Debug.cpp b/llvm/lib/Support/Debug.cpp index f87cddfe4e8..895abbb1f76 100644 --- a/llvm/lib/Support/Debug.cpp +++ b/llvm/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/llvm/lib/Support/DynamicLinker.cpp b/llvm/lib/Support/DynamicLinker.cpp index 7c52d3bb5b1..05a63f3d762 100644 --- a/llvm/lib/Support/DynamicLinker.cpp +++ b/llvm/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/llvm/lib/Support/FileUtilities.cpp b/llvm/lib/Support/FileUtilities.cpp index ca4603628ca..5d30cc8c895 100644 --- a/llvm/lib/Support/FileUtilities.cpp +++ b/llvm/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/llvm/lib/Support/LeakDetector.cpp b/llvm/lib/Support/LeakDetector.cpp index ecc4868d2e6..24c946ab6ea 100644 --- a/llvm/lib/Support/LeakDetector.cpp +++ b/llvm/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/llvm/lib/Support/Mangler.cpp b/llvm/lib/Support/Mangler.cpp index d9186a9c938..44c697d3d8f 100644 --- a/llvm/lib/Support/Mangler.cpp +++ b/llvm/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/llvm/lib/Support/PluginLoader.cpp b/llvm/lib/Support/PluginLoader.cpp index 4cacd016133..1582a10c653 100644 --- a/llvm/lib/Support/PluginLoader.cpp +++ b/llvm/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/llvm/lib/Support/Signals.cpp b/llvm/lib/Support/Signals.cpp index 563147eabf8..efc5f712578 100644 --- a/llvm/lib/Support/Signals.cpp +++ b/llvm/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/llvm/lib/Support/Statistic.cpp b/llvm/lib/Support/Statistic.cpp index ae9f57f80ed..c60a85cdeb6 100644 --- a/llvm/lib/Support/Statistic.cpp +++ b/llvm/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/llvm/lib/Support/SystemUtils.cpp b/llvm/lib/Support/SystemUtils.cpp index e1af3f92cec..8c009ffb573 100644 --- a/llvm/lib/Support/SystemUtils.cpp +++ b/llvm/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/llvm/lib/Support/Timer.cpp b/llvm/lib/Support/Timer.cpp index 30a7fbb3bd1..5e84f38852b 100644 --- a/llvm/lib/Support/Timer.cpp +++ b/llvm/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/llvm/lib/Support/ToolRunner.cpp b/llvm/lib/Support/ToolRunner.cpp index 4ae896bd99e..a66b868c22c 100644 --- a/llvm/lib/Support/ToolRunner.cpp +++ b/llvm/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/llvm/lib/Support/ValueHolder.cpp b/llvm/lib/Support/ValueHolder.cpp index e0806b538a3..8661402b061 100644 --- a/llvm/lib/Support/ValueHolder.cpp +++ b/llvm/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. |