commit | 0ceeb42c9701d995267a04899b3a6acfceb8fb9e | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Oct 22 23:34:11 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Oct 22 23:34:11 2002 +0000 |
tree | e15c890aa9a2c64e7e60cd80af16bc393ac52d80 | |
parent | 1eeac6612b3e8b09b6baf0688f9121d7f8ffefd8 [diff] [blame] |
Ensure definate initialization git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4263 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/RegAlloc/RegClass.cpp b/lib/CodeGen/RegAlloc/RegClass.cpp index b92b709..788921b 100644 --- a/lib/CodeGen/RegAlloc/RegClass.cpp +++ b/lib/CodeGen/RegAlloc/RegClass.cpp
@@ -158,7 +158,7 @@ { unsigned int IGNodeListSize = IG.getIGNodeList().size(); - double MinSpillCost; + double MinSpillCost = 0; IGNode *MinCostIGNode = NULL; bool isFirstNode = true;