diff options
author | Andreas Bolka <a@bolka.at> | 2009-07-23 01:57:06 +0000 |
---|---|---|
committer | Andreas Bolka <a@bolka.at> | 2009-07-23 01:57:06 +0000 |
commit | 3b59dd886a9b8eacd39dd5774aaa989f277f6c88 (patch) | |
tree | 0c89a0a8b08ba7af5bc4c032be49c8ee7d076912 /include | |
parent | 4bf370698a456bcc96d26184785eb4f5fab396f2 (diff) | |
download | external_llvm-3b59dd886a9b8eacd39dd5774aaa989f277f6c88.zip external_llvm-3b59dd886a9b8eacd39dd5774aaa989f277f6c88.tar.gz external_llvm-3b59dd886a9b8eacd39dd5774aaa989f277f6c88.tar.bz2 |
Minor cosmetics: indentation, formatting, naming.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/LoopDependenceAnalysis.h | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/include/llvm/Analysis/LoopDependenceAnalysis.h b/include/llvm/Analysis/LoopDependenceAnalysis.h index 67da2e7..42e434e 100644 --- a/include/llvm/Analysis/LoopDependenceAnalysis.h +++ b/include/llvm/Analysis/LoopDependenceAnalysis.h @@ -26,37 +26,37 @@ namespace llvm { - class AliasAnalysis; - class AnalysisUsage; - class ScalarEvolution; - class Value; +class AliasAnalysis; +class AnalysisUsage; +class ScalarEvolution; +class Value; - class LoopDependenceAnalysis : public LoopPass { - Loop *L; - AliasAnalysis *AA; - ScalarEvolution *SE; +class LoopDependenceAnalysis : public LoopPass { + Loop *L; + AliasAnalysis *AA; + ScalarEvolution *SE; - public: - static char ID; // Class identification, replacement for typeinfo - LoopDependenceAnalysis() : LoopPass(&ID) {} +public: + static char ID; // Class identification, replacement for typeinfo + LoopDependenceAnalysis() : LoopPass(&ID) {} - /// TODO: docs - bool isDependencePair(const Value*, const Value*) const; - bool depends(Value*, Value*); + /// TODO: docs + bool isDependencePair(const Value*, const Value*) const; + bool depends(Value*, Value*); - bool runOnLoop(Loop*, LPPassManager&); + bool runOnLoop(Loop*, LPPassManager&); - virtual void getAnalysisUsage(AnalysisUsage&) const; + virtual void getAnalysisUsage(AnalysisUsage&) const; - void print(raw_ostream&, const Module* = 0) const; - virtual void print(std::ostream&, const Module* = 0) const; - }; // class LoopDependenceAnalysis + void print(raw_ostream&, const Module* = 0) const; + virtual void print(std::ostream&, const Module* = 0) const; +}; // class LoopDependenceAnalysis - // createLoopDependenceAnalysisPass - This creates an instance of the - // LoopDependenceAnalysis pass. - // - LoopPass *createLoopDependenceAnalysisPass(); +// createLoopDependenceAnalysisPass - This creates an instance of the +// LoopDependenceAnalysis pass. +// +LoopPass *createLoopDependenceAnalysisPass(); } // namespace llvm |