Change MCAsmStreamer to take an MCInstPrinter instead of a
[llvm/avr.git] / lib / Debugger / SourceLanguage-CFamily.cpp
blobf329db495f73185d6b5b56c77a847833007b5d45
1 //===-- SourceLanguage-CFamily.cpp - C family SourceLanguage impl ---------===//
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 SourceLanguage class for the C family of languages
11 // (K&R C, C89, C99, etc).
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Debugger/SourceLanguage.h"
16 using namespace llvm;
18 #if 0
19 namespace {
20 struct CSL : public SourceLanguage {
21 } TheCSourceLanguageInstance;
23 #endif
25 const SourceLanguage &SourceLanguage::getCFamilyInstance() {
26 return get(0); // We don't have an implementation for C yet fall back on
27 // generic