clang-format: No empty line after 'public:'

llvm-svn: 192710
This commit is contained in:
Tobias Grosser 2013-10-15 14:41:02 +00:00
parent eb4a6e7c28
commit dd6dc8276f
6 changed files with 0 additions and 7 deletions

View File

@ -83,7 +83,6 @@ class MayAliasSet {
friend class MayAliasSetInfo;
public:
/// @name Must Alias Pointer Iterators
///
/// These iterators iterate over all must alias pointers in the set.

View File

@ -304,7 +304,6 @@ class ScopStmt {
friend class Scop;
public:
~ScopStmt();
/// @brief Get an isl_ctx pointer.
isl_ctx *getIslCtx() const;
@ -481,7 +480,6 @@ class Scop {
friend class ScopInfo;
public:
~Scop();
ScalarEvolution *getSE() const;

View File

@ -57,7 +57,6 @@ STATISTIC(RichScopFound, "Number of Scops containing a loop");
/// Translate a 'const SCEV *' expression in an isl_pw_aff.
struct SCEVAffinator : public SCEVVisitor<SCEVAffinator, isl_pw_aff *> {
public:
/// @brief Translate a 'const SCEV *' to an isl_pw_aff.
///
/// @param Stmt The location at which the scalar evolution expression

View File

@ -91,7 +91,6 @@ class ClastExpCodeGen {
Value *codegen(const clast_reduction *r, Type *Ty);
public:
// A generator for clast expressions.
//
// @param B The IRBuilder that defines where the code to calculate the

View File

@ -75,7 +75,6 @@ class PollyIndVarSimplify : public LoopPass {
bool Changed;
public:
static char ID; // Pass identification, replacement for typeid
PollyIndVarSimplify()
: LoopPass(ID), IU(0), LI(0), SE(0), DT(0), TD(0), Changed(false) {

View File

@ -367,7 +367,6 @@ public:
struct SCEVInRegionDependences
: public SCEVVisitor<SCEVInRegionDependences, bool> {
public:
/// Returns true when the SCEV has SSA names defined in region R.
static bool hasDependences(const SCEV *S, const Region *R) {
SCEVInRegionDependences Ignore(R);