[PATCH] D38605: [MC] Move .seh_ directive implementation to MCObjectStreamer

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 6 10:54:09 PDT 2017


rnk abandoned this revision.
rnk added a comment.

Actually, I'm just going to sink EmitCFILabel into MCObjectStreamer and call it a day. That handles both .seh_ and .cfi_ directives. New patch soon.



================
Comment at: llvm/include/llvm/MC/MCObjectStreamer.h:44
 
+  std::vector<WinEH::FrameInfo *> WinFrameInfos;
+  WinEH::FrameInfo *CurrentWinFrameInfo = nullptr;
----------------
majnemer wrote:
> Should this be `std::vector<std::unique_ptr<WinEH:FrameInfo>>` ?
Done in rL315080.


https://reviews.llvm.org/D38605





More information about the llvm-commits mailing list