blob: f464acf8eba993ac22bf2f4b0eb9a54526477200 [file] [log] [blame]
Daniel Dunbar63c4da92009-03-02 19:59:07 +00001//===--- 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"
12using namespace clang;
13
14Driver::Driver() {
15}
16
17Driver::~Driver() {
18}
19
20Compilation *Driver::BuildCompilation(int argc, const char **argv) {
21 return new Compilation();
22}