Fix a possible crash on delete of an uninitialized variable.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77846 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PIC16/PIC16TargetObjectFile.h b/lib/Target/PIC16/PIC16TargetObjectFile.h
index c296954..708c311 100644
--- a/lib/Target/PIC16/PIC16TargetObjectFile.h
+++ b/lib/Target/PIC16/PIC16TargetObjectFile.h
@@ -52,7 +52,8 @@
     mutable std::vector<PIC16Section*> ROSections;
     mutable PIC16Section *ExternalVarDecls;
     mutable PIC16Section *ExternalVarDefs;
-    
+
+    PIC16TargetObjectFile();
     ~PIC16TargetObjectFile();
     
     void Initialize(MCContext &Ctx, const TargetMachine &TM);