Correct the title and the success criteria: strcmp -> strncmp
authorReid Spencer <rspencer@reidspencer.com>
Tue, 3 May 2005 00:52:19 +0000 (00:52 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 3 May 2005 00:52:19 +0000 (00:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21659 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/SimplifyLibCalls/StrNCmp.ll

index 1b16149393d6328bd66e4dc3c85f97557c375a0e..6fdb8cb6c002cbbf76aed4c482b853541b099243 100644 (file)
@@ -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*)