Correct the file header to reflect the new "examples" home for the file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16295 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-09-11 20:30:11 +00:00
parent 714470716f
commit 66e7cd0eea
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
##===- projects/Fibonacci/Makefile -------------------------*- Makefile -*-===##
##===- examples/Fibonacci/Makefile -------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#

View File

@ -1,4 +1,4 @@
//===--- fibonacci.cpp - An example use of the JIT ----------------------===//
//===--- examples/Fibonacci/fibonacci.cpp - An example use of the JIT -----===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
//===--- HowToUseJIT.cpp - An example use of the JIT ----------------------===//
//===-- examples/HowToUseJIT/HowToUseJIT.cpp - An example use of the JIT --===//
//
// The LLVM Compiler Infrastructure
//

View File

@ -1,4 +1,4 @@
##===- projects/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
##===- examples/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#

View File

@ -1,4 +1,4 @@
##===- examples/ModuleMaker --------------------------------*- Makefile -*-===##
##===- examples/ModuleMaker/Makefile -----------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#

View File

@ -1,4 +1,4 @@
//===- ModuleMaker.cpp - Example project which creates modules --*- C++ -*-===//
//===- examples/ModuleMaker/ModuleMaker.cpp - Example project ---*- C++ -*-===//
//
// This programs is a simple example that creates an LLVM module "from scratch",
// emitting it as a bytecode file to standard out. This is just to show how