From 96ec22d6832b41653eec18e17221e547a28fffdd Mon Sep 17 00:00:00 2001 From: Nate Begeman Date: Tue, 8 Jun 2010 07:11:17 +0000 Subject: [PATCH] Fix a valgrind error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105600 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/NeonEmitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {