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 60392e2b06355216b2aa1b25e0944a5fbc413cb3..ac6de5df5f1d9a3b819e2f32d57bcf4e01edef49 100644 (file)
@@ -1,4 +1,4 @@
-##===- projects/Fibonacci/Makefile -------------------------*- Makefile -*-===##
+##===- examples/Fibonacci/Makefile -------------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
index 776378dc1fa1852ce034dcf450be6abe07edb245..f34aed762a269b3a657d118188df916dc4580219 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 889b34aa95c1f5ca33eeed269f6b893334486a49..6cea720bb43abf134512a15f76a8611a5e36d09d 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 9e42223d435c55938393a74349b1c1388de8d500..3b3947e690647e2c7f05da3f38eb42127f4e5ccb 100644 (file)
@@ -1,4 +1,4 @@
-##===- projects/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
+##===- examples/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
index 4ae28ccb7a2338ac80c1d9d315bdb51dd8e744b7..c99b7e7891c4b086331df27d76f5d5f5b643c8a2 100644 (file)
@@ -1,4 +1,4 @@
-##===- examples/ModuleMaker --------------------------------*- Makefile -*-===##
+##===- examples/ModuleMaker/Makefile -----------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
index 71e6c8cd769cc288727b50365077bc94eed1c950..a057a8c8a1046468f8d140d1e7439a7435c868ee 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