Follow the golden rule of the coding standards guide: Make the code look
[oota-llvm.git] / include / llvm / Optimizations / Normalize.h
1 //===-- Normalize.h - Functions that normalize code for the BE ---*- C++ -*--=//
2 //
3 // This file defines a family of transformations to normalize LLVM code for the
4 // code generation passes, so that the back end doesn't have to worry about
5 // annoying details.
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef LLVM_OPT_NORMALIZE_H
10 #define LLVM_OPT_NORMALIZE_H
11
12 class Method;
13
14 // NormalizePhiConstantArgs - Insert loads of constants that are arguments to
15 // PHI in the appropriate predecessor basic block.
16 //
17 void NormalizePhiConstantArgs(Method *M);
18
19 #endif LLVM_OPT_NORMALIZE_H