aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/MemoryDependenceAnalysis.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h
index c9a142e..5e06121 100644
--- a/include/llvm/Analysis/MemoryDependenceAnalysis.h
+++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h
@@ -35,6 +35,7 @@ namespace llvm {
enum DepType {
/// Invalid - Clients of MemDep never see this.
Invalid = 0,
+
/// Normal - This is a normal instruction dependence. The pointer member
/// of the MemDepResult pair holds the instruction.
Normal,
@@ -216,7 +217,7 @@ namespace llvm {
void verifyRemoved(Instruction *Inst) const;
MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
- BasicBlock *BB);
+ BasicBlock *BB);
};
} // End llvm namespace