aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-09-07 17:38:10 +0000
committerChris Lattner <sabre@nondot.org>2001-09-07 17:38:10 +0000
commitdfbaf73cf7f271e34f69d91f09abff8145c0c3e2 (patch)
tree6101d0b684d3b2eb8a7def0a7b479a53364df824
parent822b4fb896846b87dd11a330ae13f2239329aeef (diff)
Follow the golden rule of the coding standards guide: Make the code look
like the rest of the system. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@476 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Optimizations/Normalize.h39
1 files changed, 11 insertions, 28 deletions
diff --git a/include/llvm/Optimizations/Normalize.h b/include/llvm/Optimizations/Normalize.h
index bc3ade2125..3a55d9d79f 100644
--- a/include/llvm/Optimizations/Normalize.h
+++ b/include/llvm/Optimizations/Normalize.h
@@ -1,36 +1,19 @@
-// $Id$ -*-c++-*-
-//***************************************************************************
-// File:
-// Normalize.h
-//
-// Purpose:
-// Transformations to normalize LLVM code to simplify later passes:
-// -- Insert loads of constants that are arguments to PHI
-// in the appropriate predecessor basic block.
-//
-// History:
-// 8/25/01 - Vikram Adve - Created
-//**************************************************************************/
+//===-- 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
-//************************** System Include Files ***************************/
-
-
-//*************************** User Include Files ***************************/
-
-
-//************************* Forward Declarations ***************************/
-
class Method;
-//************************** External Functions ****************************/
-
-
-void NormalizePhiConstantArgs (Method* 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