diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-05-02 23:07:23 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-05-02 23:07:23 +0000 |
commit | 1db0f0ca988f95916dc553afa48387b698811ec8 (patch) | |
tree | 5679d6e2935d321e754d233f7ecd7be3ef74b1c1 /lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile | |
parent | bf29238e1a8709c3bde667f787ea4b84637fdfd4 (diff) | |
download | bcm5719-llvm-1db0f0ca988f95916dc553afa48387b698811ec8.tar.gz bcm5719-llvm-1db0f0ca988f95916dc553afa48387b698811ec8.zip |
Hide runtime support values such as clang's __vla_expr from frame variable
by respecting the "artificial" attribute on variables. Function
arguments that are artificial and useful to end-users are being
whitelisted by the language runtime.
<rdar://problem/45322477>
Differential Revision: https://reviews.llvm.org/D61451
llvm-svn: 359841
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile b/lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile new file mode 100644 index 00000000000..edd3430de7c --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/lang/objcxx/hide-runtime-values/Makefile @@ -0,0 +1,6 @@ +LEVEL = ../../../make + +OBJCXX_SOURCES := main.mm +LDFLAGS = $(CFLAGS) -lobjc -framework Foundation + +include $(LEVEL)/Makefile.rules |