summaryrefslogtreecommitdiff
path: root/lldb/include
diff options
context:
space:
mode:
authorYing Chen <chying@google.com>2015-05-28 21:06:36 +0000
committerYing Chen <chying@google.com>2015-05-28 21:06:36 +0000
commite22323c3a46b210bee1b0567c0589dd6c7a9ab0d (patch)
tree8144fc6e80e62a00bd50b1f641b4d3e36e561835 /lldb/include
parent0d86ce2ca9f54e0da430ca599956a60d2f50e026 (diff)
Revert "Move inlined cxa_demangle.cpp to a separate file."
This reverts commit 8cb47a2140f3e93a34597fc9f11c8cd96130076d.
Diffstat (limited to 'lldb/include')
-rw-r--r--lldb/include/lldb/Core/CxaDemangle.h21
-rw-r--r--lldb/include/lldb/Core/FastDemangle.h24
2 files changed, 0 insertions, 45 deletions
diff --git a/lldb/include/lldb/Core/CxaDemangle.h b/lldb/include/lldb/Core/CxaDemangle.h
deleted file mode 100644
index 0cd54fb36a3..00000000000
--- a/lldb/include/lldb/Core/CxaDemangle.h
+++ /dev/null
@@ -1,21 +0,0 @@
-//===-- CxaDemangle.h -------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef liblldb_CxaDemangle_h_
-#define liblldb_CxaDemangle_h_
-
-namespace lldb_private
-{
-
- char*
- __cxa_demangle(const char* mangled_name, char* buf, size_t* n, int* status);
-
-}
-
-#endif
diff --git a/lldb/include/lldb/Core/FastDemangle.h b/lldb/include/lldb/Core/FastDemangle.h
deleted file mode 100644
index cd6128c7303..00000000000
--- a/lldb/include/lldb/Core/FastDemangle.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- FastDemangle.h ------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef liblldb_FastDemangle_h_
-#define liblldb_FastDemangle_h_
-
-namespace lldb_private
-{
-
- char *
- FastDemangle(const char *mangled_name);
-
- char *
- FastDemangle(const char *mangled_name, long mangled_name_length);
-
-}
-
-#endif