1 //===-- 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 13 using namespace lldb; 14 15 16 SBInstructionList::SBInstructionList () 17 { 18 } 19 20 SBInstructionList::~SBInstructionList () 21 { 22 } 23 24 size_t 25 SBInstructionList::GetSize () 26 { 27 return 0; 28 } 29 30 SBInstruction 31 SBInstructionList::GetInstructionAtIndex (uint32_t idx) 32 { 33 SBInstruction inst; 34 return inst; 35 } 36 37 void 38 SBInstructionList::Clear () 39 { 40 } 41 42 void 43 SBInstructionList::AppendInstruction (SBInstruction insn) 44 { 45 } 46 47 void 48 SBInstructionList::Print (FILE *out) 49 { 50 if (out == NULL) 51 return; 52 } 53 54