diff options
author | Pavel Labath <labath@google.com> | 2016-04-28 08:16:19 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-04-28 08:16:19 +0000 |
commit | 35e9ea38127b99a261f946a415d3641538b8baa3 (patch) | |
tree | d0283839aa6960b1402f557f34674397d33d09f5 /lldb/packages/Python/lldbsuite/test/lang/cpp | |
parent | 8d598299472f36a2770d13f3c6e4764742b41aea (diff) | |
download | bcm5719-llvm-35e9ea38127b99a261f946a415d3641538b8baa3.tar.gz bcm5719-llvm-35e9ea38127b99a261f946a415d3641538b8baa3.zip |
Revert "Fixed a bug where const this would cause parser errors about $__lldb_expr."
This reverts commit r267833 as it breaks the build. It looks like some work in progress got
committed together with the actual fix, but I'm not sure which one is which, so I'll revert the
whole patch and let author resumbit it after fixing the build error.
llvm-svn: 267861
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
3 files changed, 0 insertions, 35 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile b/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile deleted file mode 100644 index 52a92c0b61a..00000000000 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -LEVEL = ../../../make -CXX_SOURCES := main.cpp -CXXFLAGS += -std=c++11 -include $(LEVEL)/Makefile.rules - -cleanup: - rm -f Makefile *.d - diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py deleted file mode 100644 index 2249a8c9b16..00000000000 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py +++ /dev/null @@ -1,4 +0,0 @@ -from lldbsuite.test import lldbinline -from lldbsuite.test import decorators - -lldbinline.MakeInlineTest(__file__, globals(), [decorators.expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764")] ) diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp b/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp deleted file mode 100644 index 7614977b245..00000000000 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp +++ /dev/null @@ -1,23 +0,0 @@ -//===-- main.cpp ------------------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include <stdio.h> - -class foo { -public: - template <class T> T func(T x) const { - return x+2; //% self.expect("expr 2+3", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["5"]) - } -}; - -int i; - -int main() { - return foo().func(i); -} |