forked from OSchip/llvm-project
clang-format: No empty line after 'public:'
llvm-svn: 192710
This commit is contained in:
parent
eb4a6e7c28
commit
dd6dc8276f
|
|
@ -83,7 +83,6 @@ class MayAliasSet {
|
||||||
friend class MayAliasSetInfo;
|
friend class MayAliasSetInfo;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// @name Must Alias Pointer Iterators
|
/// @name Must Alias Pointer Iterators
|
||||||
///
|
///
|
||||||
/// These iterators iterate over all must alias pointers in the set.
|
/// These iterators iterate over all must alias pointers in the set.
|
||||||
|
|
|
||||||
|
|
@ -304,7 +304,6 @@ class ScopStmt {
|
||||||
friend class Scop;
|
friend class Scop;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
~ScopStmt();
|
~ScopStmt();
|
||||||
/// @brief Get an isl_ctx pointer.
|
/// @brief Get an isl_ctx pointer.
|
||||||
isl_ctx *getIslCtx() const;
|
isl_ctx *getIslCtx() const;
|
||||||
|
|
@ -481,7 +480,6 @@ class Scop {
|
||||||
friend class ScopInfo;
|
friend class ScopInfo;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
~Scop();
|
~Scop();
|
||||||
|
|
||||||
ScalarEvolution *getSE() const;
|
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.
|
/// Translate a 'const SCEV *' expression in an isl_pw_aff.
|
||||||
struct SCEVAffinator : public SCEVVisitor<SCEVAffinator, isl_pw_aff *> {
|
struct SCEVAffinator : public SCEVVisitor<SCEVAffinator, isl_pw_aff *> {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// @brief Translate a 'const SCEV *' to an isl_pw_aff.
|
/// @brief Translate a 'const SCEV *' to an isl_pw_aff.
|
||||||
///
|
///
|
||||||
/// @param Stmt The location at which the scalar evolution expression
|
/// @param Stmt The location at which the scalar evolution expression
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,6 @@ class ClastExpCodeGen {
|
||||||
Value *codegen(const clast_reduction *r, Type *Ty);
|
Value *codegen(const clast_reduction *r, Type *Ty);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// A generator for clast expressions.
|
// A generator for clast expressions.
|
||||||
//
|
//
|
||||||
// @param B The IRBuilder that defines where the code to calculate the
|
// @param B The IRBuilder that defines where the code to calculate the
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,6 @@ class PollyIndVarSimplify : public LoopPass {
|
||||||
bool Changed;
|
bool Changed;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
static char ID; // Pass identification, replacement for typeid
|
static char ID; // Pass identification, replacement for typeid
|
||||||
PollyIndVarSimplify()
|
PollyIndVarSimplify()
|
||||||
: LoopPass(ID), IU(0), LI(0), SE(0), DT(0), TD(0), Changed(false) {
|
: LoopPass(ID), IU(0), LI(0), SE(0), DT(0), TD(0), Changed(false) {
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,6 @@ public:
|
||||||
struct SCEVInRegionDependences
|
struct SCEVInRegionDependences
|
||||||
: public SCEVVisitor<SCEVInRegionDependences, bool> {
|
: public SCEVVisitor<SCEVInRegionDependences, bool> {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Returns true when the SCEV has SSA names defined in region R.
|
/// Returns true when the SCEV has SSA names defined in region R.
|
||||||
static bool hasDependences(const SCEV *S, const Region *R) {
|
static bool hasDependences(const SCEV *S, const Region *R) {
|
||||||
SCEVInRegionDependences Ignore(R);
|
SCEVInRegionDependences Ignore(R);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue