mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
9c67ad476b
llvm-svn: 5897
21 lines
703 B
C++
21 lines
703 B
C++
//===-- 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
|