Skip to content

Commit ad90236

Browse files
committed
run clang format
1 parent 8c7b226 commit ad90236

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

lib/PhasarLLVM/DataFlowSolver/IfdsIde/Problems/IDEInstInteractionAnalysis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
#include "phasar/PhasarLLVM/DataFlowSolver/IfdsIde/Problems/IDEInstInteractionAnalysis.h"
1111

12+
#include "llvm/IR/Instruction.h"
1213
#include "llvm/IR/Instructions.h"
1314
#include "llvm/IR/Value.h"
1415
#include "llvm/Support/Casting.h"
1516
#include "llvm/Support/ErrorHandling.h"
16-
#include "llvm/IR/Instruction.h"
1717

1818
#include <algorithm>
1919
#include <memory>

unittests/PhasarLLVM/DataFlowSolver/IfdsIde/Problems/IDEInstInteractionAnalysisTest.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,15 @@ class IDEInstInteractionAnalysisTest : public ::testing::Test {
126126
llvm::raw_string_ostream RSO(FactStr);
127127
RSO << *Fact.getBase();
128128
llvm::StringRef FactRef(FactStr);
129-
// llvm::outs() << "Iterating result map entry: " << Fact << ", " << Value
129+
// llvm::outs() << "Iterating result map entry: " << Fact << ", " <<
130+
// Value
130131
// << " with FactRef: " << FactRef
131132
// << " and VarName: " << VarName << '\n';
132133
if (FactRef.ltrim().startswith("%" + VarName + " ") ||
133134
FactRef.ltrim().startswith("@" + VarName + " ")) {
134-
// llvm::outs() << "Found fact: " << FactRef.ltrim() << '\n';
135-
// llvm::outs() << "Compare Value: " << Value
136-
// << " and LatticeVal: " << LatticeVal << '\n';
135+
// llvm::outs() << "Found fact: " << FactRef.ltrim() << '\n';
136+
// llvm::outs() << "Compare Value: " << Value
137+
// << " and LatticeVal: " << LatticeVal << '\n';
137138
PHASAR_LOG_LEVEL(DFADEBUG, "Checking variable: " << FactStr);
138139
EXPECT_EQ(LatticeVal, Value);
139140
FactFound = true;

0 commit comments

Comments
 (0)