From: Nate Begeman Date: Tue, 8 Jun 2010 07:11:17 +0000 (+0000) Subject: Fix a valgrind error. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=96ec22d6832b41653eec18e17221e547a28fffdd;p=oota-llvm.git Fix a valgrind error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105600 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index 9cf2cbfc108..15358f26be7 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -436,7 +436,7 @@ static std::string GenOpString(OpKind op, const std::string &proto, std::string ts = TypeString(proto[0], typestr); std::string s = ts + " r; r"; - bool quad, dummy; + bool dummy, quad = false; char type = ClassifyType(typestr, quad, dummy, dummy); unsigned nElts = 0; switch (type) {