Sean Callanan | bd51cdd | 2010-01-29 01:30:01 +0000 | [diff] [blame] | 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 | } |