Anders Carlsson | 4986530 | 2007-08-20 18:05:56 +0000 | [diff] [blame^] | 1 | //===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Anders Carlsson and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code to emit Builtin calls as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
| 15 | #include "CodeGenModule.h" |
| 16 | #include "clang/AST/Builtins.h" |
| 17 | #include "clang/AST/Expr.h" |
| 18 | |
| 19 | using namespace clang; |
| 20 | using namespace CodeGen; |
| 21 | |
| 22 | RValue CodeGenFunction::EmitBuiltinExpr(unsigned builtinID, const CallExpr *E) |
| 23 | { |
| 24 | switch (builtinID) { |
| 25 | default: |
| 26 | assert(0 && "Unknown builtin id"); |
| 27 | } |
| 28 | |
| 29 | return RValue::get(0); |
| 30 | } |