fix potentially uninitialized warning on other platforms

- fixes compiler warning about variable that might not be initialized on other platforms
Esse commit está contido em:
Sean Cannella
2013-06-26 14:47:51 -07:00
commit de Sara Golemon
commit 779904e538
+1 -1
Ver Arquivo
@@ -2586,7 +2586,7 @@ void HhbcTranslator::assertString(const Location& loc, const StringData* str) {
*/
RuntimeType HhbcTranslator::rttFromLocation(const Location& loc) {
Type t;
SSATmp* val;
SSATmp* val = nullptr;
switch (loc.space) {
case Location::Stack: {
auto i = loc.offset;