Index: src/AST/Convert.cpp
===================================================================
--- src/AST/Convert.cpp	(revision e00c22feb84a430a60c57638aabf2d3f11f8c449)
+++ src/AST/Convert.cpp	(revision f2ccbfd8293b9c7214def7757379a89add64de2e)
@@ -9,7 +9,7 @@
 // Author           : Thierry Delisle
 // Created On       : Thu May 09 15::37::05 2019
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Dec 11 21:39:32 2019
-// Update Count     : 33
+// Last Modified By : Andrew Beach
+// Last Modified On : Thr Nov 12 10:07:00 2020
+// Update Count     : 34
 //
 
@@ -187,5 +187,5 @@
 		auto init = get<Initializer>().accept1( node->init );
 		decl->init = init;
-		
+
 		this->node = decl;
 		return nullptr;
@@ -2812,4 +2812,11 @@
 	}
 	deleteAll(translationUnit);
+
+	// Load the local static varables into the global store.
+	unit.global.sizeType = ast::sizeType;
+	unit.global.dereference = ast::dereferenceOperator;
+	unit.global.dtorStruct = ast::dtorStruct;
+	unit.global.dtorDestroy = ast::dtorStructDestroy;
+
 	return unit;
 }
