diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-02-25 06:39:10 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-02-25 06:39:10 +0000 |
commit | e7ee59b6a4ec6c7a360a77aac044a546b0012c37 (patch) | |
tree | 0e16b2789f327a48655394a594cb73846495e330 /lib/Transforms | |
parent | 813636a97bfb05955f507f77bd68c42ed101745f (diff) |
Modernize comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97121 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/IPO/GlobalOpt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index d4aaf9e988..5e140cfd75 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/lib/Transforms/IPO/GlobalOpt.cpp @@ -642,7 +642,7 @@ static bool AllUsesOfValueWillTrapIfNull(Value *V, return false; } else if (isa<ICmpInst>(*UI) && isa<ConstantPointerNull>(UI->getOperand(1))) { - // Ignore setcc X, null + // Ignore icmp X, null } else { //cerr << "NONTRAPPING USE: " << **UI; return false; |