blob: 4af667241c3e3e658946e3b01b6834a61efb3752 [file] [log] [blame]
//===-- MergeGEP.cpp - Merge GEPs for indexing in arrays ------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Merge chained GEPs; Specially useful for arrays inside structs
//
//===----------------------------------------------------------------------===//
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Module.h"
#include "llvm/Pass.h"
namespace llvm {
//
// Class: MergeArrayGEP
//
class MergeArrayGEP : public ModulePass {
public:
static char ID;
MergeArrayGEP() : ModulePass(ID) {}
virtual bool runOnModule(Module& M);
};
}