summaryrefslogtreecommitdiffstats
path: root/lldb/lit/tools/lldb-instr/Inputs/foo.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-07-18 17:06:06 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-07-18 17:06:06 +0000
commit37fed664022e07c2293b674e9c9d2b50aac547ba (patch)
treee90f3c379baa27e0b44b9adfee00eccfabb84304 /lldb/lit/tools/lldb-instr/Inputs/foo.cpp
parentabbc3ff4ad9e744b89f1bd8755f4f56ee4539393 (diff)
downloadbcm5719-llvm-37fed664022e07c2293b674e9c9d2b50aac547ba.tar.gz
bcm5719-llvm-37fed664022e07c2293b674e9c9d2b50aac547ba.zip
[LLDB] Remove lldb-mi
As discussed on the mailing list [1], this patch removes the lldb-mi tool and its tests from the LLDB repository. We moved lldb-mi into a separate repository on GitHub [2] for downstream users or maintainers to build and package. [1] http://lists.llvm.org/pipermail/lldb-dev/2019-July/015103.html [2] https://github.com/lldb-tools/lldb-mi Differential revision: https://reviews.llvm.org/D64255 llvm-svn: 366465
Diffstat (limited to 'lldb/lit/tools/lldb-instr/Inputs/foo.cpp')
-rw-r--r--lldb/lit/tools/lldb-instr/Inputs/foo.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/lldb/lit/tools/lldb-instr/Inputs/foo.cpp b/lldb/lit/tools/lldb-instr/Inputs/foo.cpp
deleted file mode 100644
index 981b911eee2..00000000000
--- a/lldb/lit/tools/lldb-instr/Inputs/foo.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "foo.h"
-
-#define MACRO_FOO \
- { void; }
-#define MACRO_BAR(B) B
-
-Foo::Foo() {}
-void Foo::A() {}
-void Foo::B(int i) {}
-int Foo::C(int i) { return i; }
-int Foo::D(bool b) const { return 1; }
-void Foo::E() {}
-int Foo::F(int i) { return i; }
-void Foo::G(const char *fmt...) {}
-Foo Foo::H() { return Foo(); }
-void Foo::I() const { MACRO_FOO; }
-Bar Foo::J() const { return MACRO_BAR(Bar()); }
-Bar Foo::K(void *v) const { return Bar(); }
-Bar &Foo::L() const {
- Bar *b = new Bar();
- return *b;
-};
-Bar *Foo::M() const {
- Bar *b = new Bar();
- return b;
-};
OpenPOWER on IntegriCloud