Turn strcmp into memcmp, such as strcmp(P, "x") --> memcmp(P, "x", 2).
authorNick Lewycky <nicholas@mxc.ca>
Sun, 21 Dec 2008 00:19:21 +0000 (00:19 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 21 Dec 2008 00:19:21 +0000 (00:19 +0000)
commit13a09e298c37df0711aeb935e0653ae51313d19a
tree7537f5025d3fc21cb8c1b8929ba1b6bc4614867b
parentb12b1a27f50628f5bd895de5278f70a8c905ca0a
Turn strcmp into memcmp, such as strcmp(P, "x") --> memcmp(P, "x", 2).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61297 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/Scalar/SimplifyLibCalls.cpp
test/Transforms/SimplifyLibCalls/2008-12-20-StrcmpMemcmp.ll [new file with mode: 0644]