mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-05 19:29:01 +00:00
Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299344 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
995bf6a159
commit
23a948a82f
@ -135,7 +135,7 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
this->Visited.completed(Node);
|
this->Visited.completed(Node);
|
||||||
|
|
||||||
// Oops, ran out of successors... go up a level on the stack.
|
// Oops, ran out of successors... go up a level on the stack.
|
||||||
VisitStack.pop_back();
|
VisitStack.pop_back();
|
||||||
} while (!VisitStack.empty());
|
} while (!VisitStack.empty());
|
||||||
|
@ -31,7 +31,7 @@ template <typename T> struct PointerUnionTypeSelectorReturn {
|
|||||||
/// Get a type based on whether two types are the same or not.
|
/// Get a type based on whether two types are the same or not.
|
||||||
///
|
///
|
||||||
/// For:
|
/// For:
|
||||||
///
|
///
|
||||||
/// \code
|
/// \code
|
||||||
/// typedef typename PointerUnionTypeSelector<T1, T2, EQ, NE>::Return Ret;
|
/// typedef typename PointerUnionTypeSelector<T1, T2, EQ, NE>::Return Ret;
|
||||||
/// \endcode
|
/// \endcode
|
||||||
|
@ -238,7 +238,7 @@ public:
|
|||||||
bool operator!=(const SetVector &that) const {
|
bool operator!=(const SetVector &that) const {
|
||||||
return vector_ != that.vector_;
|
return vector_ != that.vector_;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// \brief Compute This := This u S, return whether 'This' changed.
|
/// \brief Compute This := This u S, return whether 'This' changed.
|
||||||
/// TODO: We should be able to use set_union from SetOperations.h, but
|
/// TODO: We should be able to use set_union from SetOperations.h, but
|
||||||
/// SetVector interface is inconsistent with DenseSet.
|
/// SetVector interface is inconsistent with DenseSet.
|
||||||
|
@ -194,7 +194,7 @@ protected:
|
|||||||
return Bucket;
|
return Bucket;
|
||||||
return EndPointer();
|
return EndPointer();
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool isSmall() const { return CurArray == SmallArray; }
|
bool isSmall() const { return CurArray == SmallArray; }
|
||||||
|
|
||||||
|
@ -343,7 +343,7 @@
|
|||||||
/// int k;
|
/// int k;
|
||||||
/// long long l;
|
/// long long l;
|
||||||
/// };
|
/// };
|
||||||
/// LLVM_PACKED_END
|
/// LLVM_PACKED_END
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
# define LLVM_PACKED(d) __pragma(pack(push, 1)) d __pragma(pack(pop))
|
# define LLVM_PACKED(d) __pragma(pack(push, 1)) d __pragma(pack(pop))
|
||||||
# define LLVM_PACKED_START __pragma(pack(push, 1))
|
# define LLVM_PACKED_START __pragma(pack(push, 1))
|
||||||
@ -464,7 +464,7 @@ void AnnotateIgnoreWritesEnd(const char *file, int line);
|
|||||||
#define LLVM_PRETTY_FUNCTION __FUNCSIG__
|
#define LLVM_PRETTY_FUNCTION __FUNCSIG__
|
||||||
#elif defined(__GNUC__) || defined(__clang__)
|
#elif defined(__GNUC__) || defined(__clang__)
|
||||||
#define LLVM_PRETTY_FUNCTION __PRETTY_FUNCTION__
|
#define LLVM_PRETTY_FUNCTION __PRETTY_FUNCTION__
|
||||||
#else
|
#else
|
||||||
#define LLVM_PRETTY_FUNCTION __func__
|
#define LLVM_PRETTY_FUNCTION __func__
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ unsigned parseArchVersion(StringRef Arch);
|
|||||||
|
|
||||||
} // namespace ARM
|
} // 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 {
|
namespace AArch64 {
|
||||||
|
|
||||||
// Arch names.
|
// Arch names.
|
||||||
|
@ -38,7 +38,7 @@ private:
|
|||||||
raw_ostream &OS;
|
raw_ostream &OS;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
StringMatcher(StringRef strVariableName,
|
StringMatcher(StringRef strVariableName,
|
||||||
const std::vector<StringPair> &matches, raw_ostream &os)
|
const std::vector<StringPair> &matches, raw_ostream &os)
|
||||||
: StrVariableName(strVariableName), Matches(matches), OS(os) {}
|
: StrVariableName(strVariableName), Matches(matches), OS(os) {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user