mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
Rename LoopSimplify.h to LoopUtils.h
As discussed, LoopUtils.h is a better name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
26
include/llvm/Transforms/Utils/LoopUtils.h
Normal file
26
include/llvm/Transforms/Utils/LoopUtils.h
Normal file
@ -0,0 +1,26 @@
|
||||
//===- llvm/Transforms/Utils/LoopUtils.h - Loop utilities -*- C++ -*-=========//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines some loop transformation utilities.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TRANSFORMS_UTILS_LOOPUTILS_H
|
||||
#define LLVM_TRANSFORMS_UTILS_LOOPUTILS_H
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class Loop;
|
||||
class Pass;
|
||||
|
||||
BasicBlock *InsertPreheaderForLoop(Loop *L, Pass *P);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user