From 967a76859749ecb602cd2c343e28888514f827bd Mon Sep 17 00:00:00 2001 From: John Hodge Date: Thu, 25 Apr 2019 13:56:11 +0800 Subject: MIR - Reduce size of LValue::Static by putting the HIR::Path behind a pointer --- src/trans/codegen_c.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/trans/codegen_c.cpp') diff --git a/src/trans/codegen_c.cpp b/src/trans/codegen_c.cpp index 98d0d3de..373a36a8 100644 --- a/src/trans/codegen_c.cpp +++ b/src/trans/codegen_c.cpp @@ -5522,7 +5522,7 @@ namespace { m_of << "var" << e; ), (Static, - m_of << Trans_Mangle(e); + m_of << Trans_Mangle(*e); ), (Field, ::HIR::TypeRef tmp; -- cgit v1.2.3