[Lldb-commits] [PATCH] D34776: Make i386-*-freebsd expression work on JIT path

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 3 07:34:12 PDT 2017


labath added a reviewer: emaste.
labath added a comment.

+ed as freebsd owner

ArrayRef cannot be returned from a function as they don't own the underlying data. The more traditional way of using SmallVector is to "return" it as a by-ref `SmallVectorImpl<T>` argument, as that avoids the need to hardcode the size in the function prototypes, but I suppose this will work as well...


https://reviews.llvm.org/D34776





More information about the lldb-commits mailing list