69285f343a054e07bd68d91100842016ff48c7f9
[oota-llvm.git] / tools / ed / EDMain.cpp
1 //===-EDMain.cpp - LLVM Enhanced Disassembly C API ------------------------===//
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 // This file implements the enhanced disassembler's public C API.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include <llvm-c/EnhancedDisassembly.h>
15
16 int EDGetDisassembler(EDDisassemblerRef *disassembler,
17                       const char *triple,
18                       EDAssemblySyntax_t syntax) {
19   return -1;
20 }