aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGException.cpp
blob: fe62fa78677b96841e9cfdaa1ea27e06f1102ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//===--- CGException.cpp - Emit LLVM Code for C++ exceptions --------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This contains code dealing with C++ exception related code generation.
//
//===----------------------------------------------------------------------===//

#include "CodeGenFunction.h"
using namespace clang;
using namespace CodeGen;

void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) {
  ErrorUnsupported(E, "throw expression");
}