diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-30 06:12:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-30 06:12:15 +0000 |
commit | f5f944aeaa1dacc6bdd2119f7561e10527014c25 (patch) | |
tree | b0035cb2437839a7b4eaeab3269c0d25d7ff9f00 | |
parent | 4b20032b08926d8cf68440c6b7818613d7ad691c (diff) | |
download | bcm5719-llvm-f5f944aeaa1dacc6bdd2119f7561e10527014c25.tar.gz bcm5719-llvm-f5f944aeaa1dacc6bdd2119f7561e10527014c25.zip |
no reason for simplifylibcalls to simplify intrinsics, instcombine does
a fine job.
llvm-svn: 50470
-rw-r--r-- | llvm/test/Transforms/SimplifyLibCalls/MemCpy.ll | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/test/Transforms/SimplifyLibCalls/MemCpy.ll b/llvm/test/Transforms/SimplifyLibCalls/MemCpy.ll index da3261d2f69..4e33b0755f9 100644 --- a/llvm/test/Transforms/SimplifyLibCalls/MemCpy.ll +++ b/llvm/test/Transforms/SimplifyLibCalls/MemCpy.ll @@ -1,6 +1,4 @@ -; Test that the StrCatOptimizer works correctly -; RUN: llvm-as < %s | opt -constprop -simplify-libcalls | \ -; RUN: llvm-dis | not grep {call.*llvm.memcpy.i32} +; RUN: llvm-as < %s | opt -constprop -instcombine | llvm-dis | not grep {call.*llvm.memcpy.i32} @h = constant [2 x i8] c"h\00" ; <[2 x i8]*> [#uses=1] @hel = constant [4 x i8] c"hel\00" ; <[4 x i8]*> [#uses=1] |