blob: d34e9d100a95241aa087173f4a6351152b18cf61 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- SBInstructionList.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/API/SBInstructionList.h"
11#include "lldb/API/SBInstruction.h"
12
13using namespace lldb;
14
15
16SBInstructionList::SBInstructionList ()
17{
18}
19
20SBInstructionList::~SBInstructionList ()
21{
22}
23
24size_t
25SBInstructionList::GetSize ()
26{
27 return 0;
28}
29
30SBInstruction
31SBInstructionList::GetInstructionAtIndex (uint32_t idx)
32{
33 SBInstruction inst;
34 return inst;
35}
36
37void
38SBInstructionList::Clear ()
39{
40}
41
42void
43SBInstructionList::AppendInstruction (SBInstruction insn)
44{
45}
46
47void
48SBInstructionList::Print (FILE *out)
49{
50 if (out == NULL)
51 return;
52}
53