summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2024-12-06 16:26:55 -0800
committerAdrian Prantl <aprantl@apple.com>2024-12-06 16:26:55 -0800
commitb504c8771f238883ef6c7234d741c2dc1d885ae3 (patch)
treee67c860a5b9504ff02bc80854a4c7a743734cab9 /lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp
parent509893b58ff444a6f080946bd368e9bde7668f13 (diff)
Revert "[lldb] Add a compiler/interpreter of LLDB data formatter bytecode to examples"
This reverts commit 60380cd27c6fa5ed6e39866c51b18a64bc4d566a.
Diffstat (limited to 'lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp')
-rw-r--r--lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp b/lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp
deleted file mode 100644
index abba34439d88..000000000000
--- a/lldb/test/Shell/ScriptInterpreter/Python/Inputs/FormatterBytecode/MyOptional.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-// A bare-bones llvm::Optional reimplementation.
-
-template <typename T> struct MyOptionalStorage {
- MyOptionalStorage(T val) : value(val), hasVal(true) {}
- MyOptionalStorage() {}
- T value;
- bool hasVal = false;
-};
-
-template <typename T> struct MyOptional {
- MyOptionalStorage<T> Storage;
- MyOptional(T val) : Storage(val) {}
- MyOptional() {}
- T &operator*() { return Storage.value; }
-};
-
-void stop() {}
-
-int main(int argc, char **argv) {
- MyOptional<int> x, y = 42;
- stop(); // break here
- return *y;
-}