Files
clang-p2996/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
Sean Callanan c530ba98a9 Import block pointers from DWARF as Clang block pointers, not as structs.
Also added a data formatter that presents them as structs if you use frame
variable to look at their contents.  Now the blocks testcase works.

<rdar://problem/15984431>

llvm-svn: 268307
2016-05-02 21:15:31 +00:00

28 lines
775 B
C++

//===-- BlockPointer.h ------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_BlockPointer_h_
#define liblldb_BlockPointer_h_
#include "lldb/lldb-forward.h"
namespace lldb_private
{
namespace formatters
{
bool
BlockPointerSummaryProvider(ValueObject &, Stream &, const TypeSummaryOptions &);
SyntheticChildrenFrontEnd *
BlockPointerSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP);
} // namespace formatters
} // namespace lldb_private
#endif // liblldb_BlockPointer_h_