aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-04-29 23:02:15 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-04-29 23:02:15 +0000
commite589cc4b760cc2baaf14a603aed68f0d714972b1 (patch)
tree2878faff8f3c66f0b46856a122770c06e0eba92d
parent41571c8961a42c5680cc59fd74db4f706b364b01 (diff)
This is StrCpy, NOT StrCat!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21622 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/SimplifyLibCalls/StrCpy.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/SimplifyLibCalls/StrCpy.ll b/test/Transforms/SimplifyLibCalls/StrCpy.ll
index 1855c0d386..ea94dc2d97 100644
--- a/test/Transforms/SimplifyLibCalls/StrCpy.ll
+++ b/test/Transforms/SimplifyLibCalls/StrCpy.ll
@@ -1,5 +1,5 @@
-; Test that the StrCatOptimizer works correctly
-; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strcat'
+; Test that the StrCpyOptimizer works correctly
+; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strcpy'
declare sbyte* %strcpy(sbyte*,sbyte*)
declare int %puts(sbyte*)