diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp b/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp deleted file mode 100644 index a8e8a5c737a..00000000000 --- a/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include <stdio.h> - -class A { -public: - int __attribute__((abi_tag("cxx11"))) test_abi_tag() { - return 1; - } - int test_asm_name() asm("A_test_asm") { - return 2; - } -}; - -int main(int argc, char **argv) { - A a; - // Break here - a.test_abi_tag(); - a.test_asm_name(); - return 0; -} |