mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 14:48:27 +08:00
clang-format: No empty line after 'public:'
llvm-svn: 192710
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user