diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-20 23:27:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-20 23:27:09 +0000 |
commit | 7b0368ee16b9abb8220050adb1dad8f43f092704 (patch) | |
tree | 72b819558cfb0b0bb3ce71cfb7eee2796fde7bb1 /llvm/lib/Analysis/DataStructure/GraphChecker.cpp | |
parent | 418b3a0f20e0f60d47e82af16d6ea516b9bd196e (diff) | |
download | llvm-7b0368ee16b9abb8220050adb1dad8f43f092704.zip llvm-7b0368ee16b9abb8220050adb1dad8f43f092704.tar.gz llvm-7b0368ee16b9abb8220050adb1dad8f43f092704.tar.bz2 |
Add two missing returns, which caused us to be very pessimistic about the
printf and scanf families!
llvm-svn: 11683
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/GraphChecker.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/GraphChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/GraphChecker.cpp b/llvm/lib/Analysis/DataStructure/GraphChecker.cpp index 5cbd5ba..af8731e 100644 --- a/llvm/lib/Analysis/DataStructure/GraphChecker.cpp +++ b/llvm/lib/Analysis/DataStructure/GraphChecker.cpp @@ -12,7 +12,7 @@ // or not a node is collapsed, etc. These are the command line arguments that // it supports: // -// --dsgc-dsapass={local,bu,td} - Specify what flavor of graph to check +// --dsgc-dspass={local,bu,td} - Specify what flavor of graph to check // --dsgc-abort-if-any-collapsed - Abort if any collapsed nodes are found // --dsgc-abort-if-collapsed=<list> - Abort if a node pointed to by an SSA // value with name in <list> is collapsed |