1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Trailing whitespace.

llvm-svn: 299344
This commit is contained in:
NAKAMURA Takumi 2017-04-02 23:57:17 +00:00
parent 7eceb5c8c8
commit 58d7a2b5bd
7 changed files with 8 additions and 8 deletions

View File

@ -135,7 +135,7 @@ private:
}
}
this->Visited.completed(Node);
// Oops, ran out of successors... go up a level on the stack.
VisitStack.pop_back();
} while (!VisitStack.empty());

View File

@ -31,7 +31,7 @@ template <typename T> struct PointerUnionTypeSelectorReturn {
/// Get a type based on whether two types are the same or not.
///
/// For:
///
///
/// \code
/// typedef typename PointerUnionTypeSelector<T1, T2, EQ, NE>::Return Ret;
/// \endcode

View File

@ -238,7 +238,7 @@ public:
bool operator!=(const SetVector &that) const {
return vector_ != that.vector_;
}
/// \brief Compute This := This u S, return whether 'This' changed.
/// TODO: We should be able to use set_union from SetOperations.h, but
/// SetVector interface is inconsistent with DenseSet.

View File

@ -194,7 +194,7 @@ protected:
return Bucket;
return EndPointer();
}
private:
bool isSmall() const { return CurArray == SmallArray; }

View File

@ -343,7 +343,7 @@
/// int k;
/// long long l;
/// };
/// LLVM_PACKED_END
/// LLVM_PACKED_END
#ifdef _MSC_VER
# define LLVM_PACKED(d) __pragma(pack(push, 1)) d __pragma(pack(pop))
# define LLVM_PACKED_START __pragma(pack(push, 1))
@ -464,7 +464,7 @@ void AnnotateIgnoreWritesEnd(const char *file, int line);
#define LLVM_PRETTY_FUNCTION __FUNCSIG__
#elif defined(__GNUC__) || defined(__clang__)
#define LLVM_PRETTY_FUNCTION __PRETTY_FUNCTION__
#else
#else
#define LLVM_PRETTY_FUNCTION __func__
#endif

View File

@ -142,7 +142,7 @@ unsigned parseArchVersion(StringRef Arch);
} // namespace ARM
// FIXME:This should be made into class design,to avoid dupplication.
// FIXME:This should be made into class design,to avoid dupplication.
namespace AArch64 {
// Arch names.

View File

@ -38,7 +38,7 @@ private:
raw_ostream &OS;
public:
StringMatcher(StringRef strVariableName,
StringMatcher(StringRef strVariableName,
const std::vector<StringPair> &matches, raw_ostream &os)
: StrVariableName(strVariableName), Matches(matches), OS(os) {}