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
This commit is contained in:
Reid Spencer 2005-05-03 00:52:19 +00:00
parent d2db880222
commit f31918b84a

View 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*)