Daniel Dunbar | 63c4da9 | 2009-03-02 19:59:07 +0000 | [diff] [blame^] | 1 | //===--- Driver.cpp - Clang GCC Compatible Driver -----------------------*-===// |
| 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 "clang/Driver/Compilation.h" |
| 11 | #include "clang/Driver/Driver.h" |
| 12 | using namespace clang; |
| 13 | |
| 14 | Driver::Driver() { |
| 15 | } |
| 16 | |
| 17 | Driver::~Driver() { |
| 18 | } |
| 19 | |
| 20 | Compilation *Driver::BuildCompilation(int argc, const char **argv) { |
| 21 | return new Compilation(); |
| 22 | } |
| 23 | |
| 24 | |