blob: f464acf8eba993ac22bf2f4b0eb9a54526477200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//===--- Driver.cpp - Clang GCC Compatible Driver -----------------------*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "clang/Driver/Compilation.h"
#include "clang/Driver/Driver.h"
using namespace clang;
Driver::Driver() {
}
Driver::~Driver() {
}
Compilation *Driver::BuildCompilation(int argc, const char **argv) {
return new Compilation();
}
|