mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-04 22:26:05 +00:00
21 lines
700 B
C++
21 lines
700 B
C++
![]() |
//===--- CodeGenFunction.cpp - Emit LLVM Code from ASTs for a Function ----===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file was developed by Chris Lattner and is distributed under
|
||
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This coordinates the per-function state used while generating code.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "CodeGenFunction.h"
|
||
|
#include "CodeGenModule.h"
|
||
|
#include "llvm/Support/LLVMBuilder.h"
|
||
|
using namespace llvm;
|
||
|
using namespace clang;
|
||
|
using namespace CodeGen;
|
||
|
|