aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-05-03 00:52:19 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-05-03 00:52:19 +0000
commitf31918b84abcc27a2f3c987646c21beddec02b26 (patch)
tree0ccbe223a02f94e7f865564983c9dda40aff6102
parentd2db880222cfc8ac471a1fa4c3a5a83309c1d595 (diff)
downloadexternal_llvm-f31918b84abcc27a2f3c987646c21beddec02b26.zip
external_llvm-f31918b84abcc27a2f3c987646c21beddec02b26.tar.gz
external_llvm-f31918b84abcc27a2f3c987646c21beddec02b26.tar.bz2
Correct the title and the success criteria: strcmp -> strncmp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21659 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/SimplifyLibCalls/StrNCmp.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/SimplifyLibCalls/StrNCmp.ll b/test/Transforms/SimplifyLibCalls/StrNCmp.ll
index 1b16149..6fdb8cb 100644
--- a/test/Transforms/SimplifyLibCalls/StrNCmp.ll
+++ b/test/Transforms/SimplifyLibCalls/StrNCmp.ll
@@ -1,5 +1,5 @@
-; Test that the StrCmpOptimizer works correctly
-; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strcmp'
+; Test that the StrNCmpOptimizer works correctly
+; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strncmp'
declare int %strncmp(sbyte*,sbyte*,int)
declare int %puts(sbyte*)