blob: 87fe3ab0f09eced8a25618e2cd8a87baddd84389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===- llvm/Transforms/DecomposeArrayRefs.h - Lower array refs --*- C++ -*--=//
//
// DecomposeArrayRefs -
// Convert multi-dimensional array references into a sequence of
// instructions (using getelementpr and cast) so that each instruction
// has at most one array offset.
//
//===---------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_DECOMPOSEARRAYREFS_H
#define LLVM_TRANSFORMS_DECOMPOSEARRAYREFS_H
class Pass;
Pass *createDecomposeArrayRefsPass();
#endif
|