forked from OSchip/llvm-project
parent
7250120177
commit
551e4ce74e
|
@ -1,6 +1,4 @@
|
||||||
//===-- GRConstantPropagation.cpp --------------------------------*- C++ -*-==//
|
//===-- GRConstantPropagation.cpp --------------------------------*- C++ -*-==//
|
||||||
//
|
|
||||||
// [ Constant Propagation via Graph Reachability ]
|
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
|
@ -9,6 +7,8 @@
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
|
// Constant Propagation via Graph Reachability
|
||||||
|
//
|
||||||
// This files defines a simple analysis that performs path-sensitive
|
// This files defines a simple analysis that performs path-sensitive
|
||||||
// constant propagation within a function. An example use of this analysis
|
// constant propagation within a function. An example use of this analysis
|
||||||
// is to perform simple checks for NULL dereferences.
|
// is to perform simple checks for NULL dereferences.
|
||||||
|
|
Loading…
Reference in New Issue