mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
f0d37a472f
Also initialize without using static initialization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231822 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
727 B
C++
24 lines
727 B
C++
//===-- AllocaHoisting.h - Hosist allocas to the entry block ----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Hoist the alloca instructions in the non-entry blocks to the entry blocks.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_NVPTX_NVPTXALLOCAHOISTING_H
|
|
#define LLVM_LIB_TARGET_NVPTX_NVPTXALLOCAHOISTING_H
|
|
|
|
namespace llvm {
|
|
class FunctionPass;
|
|
|
|
extern FunctionPass *createAllocaHoisting();
|
|
} // end namespace llvm
|
|
|
|
#endif
|