blob: fb25b5d1fa6d697eeebe767291ed40cf3b661b2c [file] [log] [blame]
Eli Friedman7c7c19d2010-07-02 19:28:44 +00001//===-- Symbols.cpp ---------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Host/Symbols.h"
11
12using namespace lldb;
13using namespace lldb_private;
14
15FileSpec
16Symbols::LocateExecutableObjectFile (const FileSpec *exec_fspec, const ArchSpec* arch, const UUID *uuid)
17{
18 // FIXME: Proper impliementation?
19 return FileSpec();
20}
21
22FileSpec
23Symbols::LocateExecutableSymbolFile (const FileSpec *exec_fspec, const ArchSpec* arch, const UUID *uuid)
24{
25 // FIXME: Proper impliementation?
26 return FileSpec();
27}