Unbreak the MSVC build again: replace bzero by memset.

llvm-svn: 123538
This commit is contained in:
Francois Pichet 2011-01-15 13:27:47 +00:00
parent ed5f2e504e
commit 07a2e14f44
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ CFGBlockValues::CFGBlockValues(const CFG &c) : cfg(c), vals(0) {
if (!n)
return;
vals = new llvm::BitVector*[n];
bzero(vals, sizeof(*vals) * n);
memset(vals, 0, sizeof(*vals) * n);
}
CFGBlockValues::~CFGBlockValues() {