blob: cfedc20448bf883e1aa2a0b8af1dbe1755797149 [file] [log] [blame]
Chris Lattner10f2d132009-11-11 00:22:30 +00001//===- LazyValueInfo.cpp - Value constraint analysis ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interface for lazy computation of value constraint
11// information.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/LazyValueInfo.h"
16using namespace llvm;
17
18char LazyValueInfo::ID = 0;
19static RegisterPass<LazyValueInfo>
20X("lazy-value-info", "Lazy Value Information Analysis", false, true);
21
22namespace llvm {
23 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
24}
25
26LazyValueInfo::LazyValueInfo() : FunctionPass(&ID) {
27}
28
29void LazyValueInfo::releaseMemory() {
30
31}