OSDN Git Service

Correct the file header to reflect the new "examples" home for the file.
authorReid Spencer <rspencer@reidspencer.com>
Sat, 11 Sep 2004 20:30:11 +0000 (20:30 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 11 Sep 2004 20:30:11 +0000 (20:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16295 91177308-0d34-0410-b5e6-96231b3b80d8

examples/Fibonacci/Makefile
examples/Fibonacci/fibonacci.cpp
examples/HowToUseJIT/HowToUseJIT.cpp
examples/HowToUseJIT/Makefile
examples/ModuleMaker/Makefile
examples/ModuleMaker/ModuleMaker.cpp

index 60392e2..ac6de5d 100644 (file)
@@ -1,4 +1,4 @@
-##===- projects/Fibonacci/Makefile -------------------------*- Makefile -*-===##
+##===- examples/Fibonacci/Makefile -------------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
index 776378d..f34aed7 100644 (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
 //
index 889b34a..6cea720 100644 (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
 //
index 9e42223..3b3947e 100644 (file)
@@ -1,4 +1,4 @@
-##===- projects/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
+##===- examples/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
index 4ae28cc..c99b7e7 100644 (file)
@@ -1,4 +1,4 @@
-##===- examples/ModuleMaker --------------------------------*- Makefile -*-===##
+##===- examples/ModuleMaker/Makefile -----------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
index 71e6c8c..a057a8c 100644 (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