From 80f283b316c12e15ba3db8b92e9b32b56b25406e Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 10 Oct 2003 17:41:32 +0000 Subject: * Doxygenified comments * Wrap code at 80 columns * Ordered includes according to LLVM style guide llvm-svn: 9020 --- llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp') diff --git a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp index bad3e97..5b6fb09 100644 --- a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp +++ b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp @@ -1,14 +1,13 @@ //===-- ModuloScheduling.cpp - Software Pipeling Approach - SMS --*- C++ -*--=// // // The is a software pipelining pass based on the Swing Modulo Scheduling -// alogrithm (SMS). +// algorithm (SMS). // //===----------------------------------------------------------------------===// #include "ModuloSchedGraph.h" - -#include "llvm/Pass.h" #include "llvm/Function.h" +#include "llvm/Pass.h" namespace { @@ -18,18 +17,19 @@ namespace { virtual bool runOnFunction(Function &F); }; - RegisterOpt X("modulo-sched", "Modulo Scheduling/Software Pipelining"); + RegisterOpt X("modulo-sched", + "Modulo Scheduling/Software Pipelining"); } -//Create Modulo Scheduling Pass +/// Create Modulo Scheduling Pass +/// Pass *createModuloSchedPass() { return new ModuloScheduling(); } -//ModuloScheduling::runOnFunction - Main transformation entry point. +/// ModuloScheduling::runOnFunction - main transformation entry point +/// bool ModuloScheduling::runOnFunction(Function &F) { bool Changed = false; - return Changed; } - -- cgit v1.1