1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

Dead header file

llvm-svn: 8317
This commit is contained in:
Chris Lattner 2003-09-01 20:46:08 +00:00
parent 7149fa4d4b
commit f993c53f49

View File

@ -1,20 +0,0 @@
//===-- LevelChange.h - Passes for raising/lowering llvm code ----*- C++ -*--=//
//
// This family of passes is useful for changing the 'level' of a module. This
// can either be raising (f.e. converting direct addressing to use getelementptr
// for structs and arrays), or lowering (for instruction selection).
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_LEVELCHANGE_H
#define LLVM_TRANSFORMS_LEVELCHANGE_H
class Pass;
// RaisePointerReferences - Try to eliminate as many pointer arithmetic
// expressions as possible, by converting expressions to use getelementptr and
// friends.
//
Pass *createRaisePointerReferencesPass();
#endif