diff options
author | Kevin Enderby <enderby@apple.com> | 2010-06-28 21:45:58 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2010-06-28 21:45:58 +0000 |
commit | f187ac5a23213f85c3c1f0f80b3592295ee6441d (patch) | |
tree | 92f3b045852ec88f84ca3d461e6d871f0cfba079 /lib/MC/MCContext.cpp | |
parent | 0dd3549edc91b50fba102a6b0473caf8d4cf6b70 (diff) |
Added the darwin .secure_log_unique and .secure_log_reset directives.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCContext.cpp')
-rw-r--r-- | lib/MC/MCContext.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/MC/MCContext.cpp b/lib/MC/MCContext.cpp index 53ffc9409a..2044a93b37 100644 --- a/lib/MC/MCContext.cpp +++ b/lib/MC/MCContext.cpp @@ -27,6 +27,10 @@ MCContext::MCContext(const MCAsmInfo &mai) : MAI(mai), NextUniqueID(0) { MachOUniquingMap = 0; ELFUniquingMap = 0; COFFUniquingMap = 0; + + SecureLogFile = getenv("AS_SECURE_LOG_FILE"); + SecureLog = 0; + SecureLogUsed = false; } MCContext::~MCContext() { @@ -37,6 +41,9 @@ MCContext::~MCContext() { delete (MachOUniqueMapTy*)MachOUniquingMap; delete (ELFUniqueMapTy*)ELFUniquingMap; delete (COFFUniqueMapTy*)COFFUniquingMap; + + // If the stream for the .secure_log_unique directive was created free it. + delete (raw_ostream*)SecureLog; } //===----------------------------------------------------------------------===// |