diff options
| author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-03-02 09:01:14 +0000 | 
|---|---|---|
| committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-03-02 09:01:14 +0000 | 
| commit | 931d4521c33df446cf4f5a8ae168a8001556693f (patch) | |
| tree | 21923e5f5c09631cbaf3159c5b790a96e6c8871b /llvm/tools/llvmc/driver/Error.h | |
| parent | 57359cad176d71f47203d5d486e2563e70dc58e0 (diff) | |
| download | bcm5719-llvm-931d4521c33df446cf4f5a8ae168a8001556693f.tar.gz bcm5719-llvm-931d4521c33df446cf4f5a8ae168a8001556693f.zip | |
Reorganize llvmc code.
Move the code from 'llvmc/driver' into a new CompilerDriver library, and change
the build system accordingly. Makes it easier for projects using LLVM to build
their own llvmc-based drivers.
Tested with objdir != srcdir.
llvm-svn: 65821
Diffstat (limited to 'llvm/tools/llvmc/driver/Error.h')
| -rw-r--r-- | llvm/tools/llvmc/driver/Error.h | 33 | 
1 files changed, 0 insertions, 33 deletions
| diff --git a/llvm/tools/llvmc/driver/Error.h b/llvm/tools/llvmc/driver/Error.h deleted file mode 100644 index c0aaff1a724..00000000000 --- a/llvm/tools/llvmc/driver/Error.h +++ /dev/null @@ -1,33 +0,0 @@ -//===--- Error.h - The LLVM Compiler Driver ---------------------*- C++ -*-===// -// -//                     The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open -// Source License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -//  Exception classes for LLVMC. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TOOLS_LLVMC2_ERROR_H -#define LLVM_TOOLS_LLVMC2_ERROR_H - -#include <stdexcept> - -namespace llvmc { - -  class error_code: public std::runtime_error { -    int Code_; -  public: -    error_code (int c) -      : std::runtime_error("Tool returned error code"), Code_(c) -    {} - -    int code() const { return Code_; } -  }; - -} - -#endif //LLVM_TOOLS_LLVMC2_ERROR_H | 

