mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-22 03:48:57 +00:00
Clean up whitespace
llvm-svn: 200579
This commit is contained in:
parent
5cde3516d0
commit
e9a572242c
@ -159,7 +159,7 @@ class BlockFrequencyImpl {
|
||||
return;
|
||||
}
|
||||
|
||||
if(BlockT *Pred = getSingleBlockPred(BB)) {
|
||||
if (BlockT *Pred = getSingleBlockPred(BB)) {
|
||||
if (BlocksInLoop.count(Pred))
|
||||
setBlockFreq(BB, getEdgeFreq(Pred, BB));
|
||||
// TODO: else? irreducible, ignore it for now.
|
||||
|
@ -602,7 +602,7 @@ TEST(APIntTest, arrayAccess) {
|
||||
// Single word check.
|
||||
uint64_t E1 = 0x2CA7F46BF6569915ULL;
|
||||
APInt A1(64, E1);
|
||||
for (unsigned i = 0, e = 64; i < e; ++i) {
|
||||
for (unsigned i = 0, e = 64; i < e; ++i) {
|
||||
EXPECT_EQ(bool(E1 & (1ULL << i)),
|
||||
A1[i]);
|
||||
}
|
||||
@ -632,7 +632,7 @@ TEST(APIntTest, LargeAPIntConstruction) {
|
||||
}
|
||||
|
||||
TEST(APIntTest, nearestLogBase2) {
|
||||
// Single word check.
|
||||
// Single word check.
|
||||
|
||||
// Test round up.
|
||||
uint64_t I1 = 0x1800001;
|
||||
|
Loading…
x
Reference in New Issue
Block a user