From reid at x10sys.com Mon Aug 30 00:57:09 2004 From: reid at x10sys.com (Reid Spencer) Date: Mon, 30 Aug 2004 00:57:09 -0500 Subject: [llvm-commits] CVS: llvm/docs/CommandLine.html Message-ID: <200408300557.AAA02045@zion.cs.uiuc.edu> Changes in directory llvm/docs: CommandLine.html updated: 1.25 -> 1.26 --- Log message: Add a blurb about exploiting the use of external storage. --- Diffs of the changes: (+10 -2) Index: llvm/docs/CommandLine.html diff -u llvm/docs/CommandLine.html:1.25 llvm/docs/CommandLine.html:1.26 --- llvm/docs/CommandLine.html:1.25 Fri Aug 13 15:19:14 2004 +++ llvm/docs/CommandLine.html Mon Aug 30 00:56:51 2004 @@ -1740,8 +1740,16 @@
Several of the LLVM libraries define static cl::opt instances that + will automatically be included in any program that links with that library. + This is a feature. However, sometimes it is necessary to know the value of the + command line option outside of the library. In these cases the library does or + should provide an external storage location that is accessible to users of the + library. Examples of this include the llvm::DebugFlag exported by the + lib/Support/Debug.cpp file and the llvm::TimePassesIsEnabled + flag exported by the lib/VMCore/Pass.cpp file.
-TODO: fill in this section
+TODO: complete this section