diff options
author | Pedro Artigas <partigas@apple.com> | 2012-12-12 22:59:46 +0000 |
---|---|---|
committer | Pedro Artigas <partigas@apple.com> | 2012-12-12 22:59:46 +0000 |
commit | 5399d2502acaf96fe8420e61913e77f0b23650ff (patch) | |
tree | 0a88b5a320500c2eeae8320ce4bd46014af30ef9 /include/llvm/MC/MCAssembler.h | |
parent | 5749801caaf523e2e151eea4cacc87299a4b3822 (diff) |
Make the MCStreamer have a reset method and call that after finalization of the asm printer,
also changed MCContext to a single reset only method for simplicity as requested on the list
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170041 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAssembler.h')
-rw-r--r-- | include/llvm/MC/MCAssembler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/MC/MCAssembler.h b/include/llvm/MC/MCAssembler.h index 0ecb66c734..8dba3b9c09 100644 --- a/include/llvm/MC/MCAssembler.h +++ b/include/llvm/MC/MCAssembler.h @@ -802,6 +802,10 @@ public: raw_ostream &OS); ~MCAssembler(); + /// Reuse an assembler instance + /// + void reset(); + MCContext &getContext() const { return Context; } MCAsmBackend &getBackend() const { return Backend; } |