commit | 020336803b8e33c608abf720fbf28cd70d88068d | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Sun Aug 02 01:25:15 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Sun Aug 02 01:25:15 2009 +0000 |
tree | a8ad72b3d8d4a3b62cf9c563d183504129880ed6 | |
parent | b60f4e056953a86a93a2ae0791f704ba05380927 [diff] [blame] |
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);