From: Reid Spencer Date: Tue, 3 May 2005 00:52:19 +0000 (+0000) Subject: Correct the title and the success criteria: strcmp -> strncmp X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f31918b84abcc27a2f3c987646c21beddec02b26;p=oota-llvm.git 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 --- diff --git a/test/Transforms/SimplifyLibCalls/StrNCmp.ll b/test/Transforms/SimplifyLibCalls/StrNCmp.ll index 1b16149393d..6fdb8cb6c00 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*)