diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-20 20:19:47 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-20 20:19:47 +0000 |
commit | 6fbcc26f1460eaee4e0eb8b426fc1ff0c7af11be (patch) | |
tree | 6364f1c2b2c89aae167b00703823e0c12418d6a4 /include/llvm/Support | |
parent | 1fc0d67e3e0ff7220dc52a14378110ed9cf626d8 (diff) |
Added LLVM copyright header (for lack of a better term).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/CFG.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/CallSite.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/ConstantRange.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/InstIterator.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/InstVisitor.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/Linker.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/Mangler.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/PassNameParser.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/ToolRunner.h | 7 | ||||
-rw-r--r-- | include/llvm/Support/ValueHolder.h | 7 |
10 files changed, 70 insertions, 0 deletions
diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 2d67c026eb..9355139f34 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -1,4 +1,11 @@ //===-- llvm/Support/CFG.h - Process LLVM structures as graphs --*- 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 defines specializations of GraphTraits that allow Function and // BasicBlock graphs to be treated as proper graphs for generic algorithms. diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h index dc137d83b5..afd42246cd 100644 --- a/include/llvm/Support/CallSite.h +++ b/include/llvm/Support/CallSite.h @@ -1,4 +1,11 @@ //===-- llvm/Support/CallSite.h - Abstract Call & Invoke instrs -*- 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 defines the CallSite class, which is a handy wrapper for code that // wants to treat Call and Invoke instructions in a generic way. diff --git a/include/llvm/Support/ConstantRange.h b/include/llvm/Support/ConstantRange.h index 58fa91f282..c173549a37 100644 --- a/include/llvm/Support/ConstantRange.h +++ b/include/llvm/Support/ConstantRange.h @@ -1,4 +1,11 @@ //===-- llvm/Support/ConstantRange.h - Represent a range --------*- 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. +// +//===----------------------------------------------------------------------===// // // 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/include/llvm/Support/InstIterator.h b/include/llvm/Support/InstIterator.h index 1f6862ba91..4c2d185576 100644 --- a/include/llvm/Support/InstIterator.h +++ b/include/llvm/Support/InstIterator.h @@ -1,4 +1,11 @@ //===- llvm/Support/InstIterator.h - Classes for inst iteration -*- 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 definitions of two iterators for iterating over the // instructions in a function. This is effectively a wrapper around a two level diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 36ee361aff..de1bce96bb 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -1,4 +1,11 @@ //===- llvm/Support/InstVisitor.h - Define instruction visitors -*- 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 template class is used to define instruction visitors in a typesafe // manner without having to use lots of casts and a big switch statement (in diff --git a/include/llvm/Support/Linker.h b/include/llvm/Support/Linker.h index f40cce3dcd..ac399034d4 100644 --- a/include/llvm/Support/Linker.h +++ b/include/llvm/Support/Linker.h @@ -1,4 +1,11 @@ //===- llvm/Transforms/Utils/Linker.h - Module Linker Interface -*- 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 defines the interface to the module linker. // diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h index 7e44827a47..1f56ff319e 100644 --- a/include/llvm/Support/Mangler.h +++ b/include/llvm/Support/Mangler.h @@ -1,4 +1,11 @@ //===-- Mangler.h - Self-contained c/asm llvm name mangler ------*- 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. +// +//===----------------------------------------------------------------------===// // // Unified name mangler for CWriter and assembly backends. // diff --git a/include/llvm/Support/PassNameParser.h b/include/llvm/Support/PassNameParser.h index c324161f30..f63666ba66 100644 --- a/include/llvm/Support/PassNameParser.h +++ b/include/llvm/Support/PassNameParser.h @@ -1,4 +1,11 @@ //===- llvm/Support/PassNameParser.h ----------------------------*- 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 the PassNameParser and FilteredPassNameParser<> classes, which are // used to add command line arguments to a utility for all of the passes that diff --git a/include/llvm/Support/ToolRunner.h b/include/llvm/Support/ToolRunner.h index 3652ff65ed..e23ec7f312 100644 --- a/include/llvm/Support/ToolRunner.h +++ b/include/llvm/Support/ToolRunner.h @@ -1,4 +1,11 @@ //===-- Support/ToolRunner.h ------------------------------------*- 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 exposes an abstraction around a platform C compiler, used to // compile C and assembly code. It also exposes an "AbstractIntepreter" diff --git a/include/llvm/Support/ValueHolder.h b/include/llvm/Support/ValueHolder.h index cba246351f..62ab9d9ca2 100644 --- a/include/llvm/Support/ValueHolder.h +++ b/include/llvm/Support/ValueHolder.h @@ -1,4 +1,11 @@ //===-- llvm/Support/ValueHolder.h - Wrapper for Value's --------*- 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 class defines a simple subclass of User, which keeps a pointer to a // Value, which automatically updates when Value::replaceAllUsesWith is called. |