aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-14 06:14:15 +0000
committerChris Lattner <sabre@nondot.org>2002-04-14 06:14:15 +0000
commitdd4144a5870d0f0245e4fee4c793d62cc1f29af1 (patch)
tree7fb93e7f045e13a71d64fb870034deeac03fc820
parent7faa88366572f1515cc4e5e818c8ea9e6d0f2f8b (diff)
s/Method/Function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2246 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Analysis/Verifier.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/Verifier.h b/include/llvm/Analysis/Verifier.h
index 7a0ab000d8..03de4baa6e 100644
--- a/include/llvm/Analysis/Verifier.h
+++ b/include/llvm/Analysis/Verifier.h
@@ -1,6 +1,6 @@
//===-- llvm/Analysis/Verifier.h - Module Verifier ---------------*- C++ -*-==//
//
-// This file defines the method verifier interface, that can be used for some
+// This file defines the function verifier interface, that can be used for some
// sanity checking of input to the system.
//
// Note that this does not provide full 'java style' security and verifications,
@@ -17,7 +17,7 @@ class Pass;
class Module;
class Function;
-// createVerifierPass - Check a module or method for validity. If errors are
+// createVerifierPass - Check a module or function for validity. If errors are
// detected, error messages corresponding to the problem are printed to stderr.
//
Pass *createVerifierPass();
@@ -27,8 +27,8 @@ Pass *createVerifierPass();
//
bool verifyModule(const Module *M);
-// verifyMethod - Check a method for errors, useful for use when debugging a
+// verifyFunction - Check a function for errors, useful for use when debugging a
// pass.
-bool verifyMethod(const Function *M);
+bool verifyFunction(const Function *F);
#endif