From: Gabor Greif Date: Sun, 6 Apr 2008 21:42:13 +0000 (+0000) Subject: fix a warning X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c024cbca224812f4a2fe0fe85333d48d78635189;p=oota-llvm.git fix a warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49282 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index 78d24ef5f50..ed34a501659 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -811,7 +811,7 @@ namespace llvm { template struct VISIBILITY_HIDDEN ConstantCreator { static ConstantClass *create(const TypeClass *Ty, const ValType &V) { - unsigned FIXME; // = traits::uses(V) + unsigned FIXME = 0; // = traits::uses(V) return new(FIXME) ConstantClass(Ty, V); } };