mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
dfbaf73cf7
like the rest of the system. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@476 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
623 B
C++
20 lines
623 B
C++
//===-- Normalize.h - Functions that normalize code for the BE ---*- C++ -*--=//
|
|
//
|
|
// This file defines a family of transformations to normalize LLVM code for the
|
|
// code generation passes, so that the back end doesn't have to worry about
|
|
// annoying details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_OPT_NORMALIZE_H
|
|
#define LLVM_OPT_NORMALIZE_H
|
|
|
|
class Method;
|
|
|
|
// NormalizePhiConstantArgs - Insert loads of constants that are arguments to
|
|
// PHI in the appropriate predecessor basic block.
|
|
//
|
|
void NormalizePhiConstantArgs(Method *M);
|
|
|
|
#endif LLVM_OPT_NORMALIZE_H
|