Skip to content

Commit 0a69ad5

Browse files
committed
minor
1 parent e4e778b commit 0a69ad5

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

include/phasar/Utils/LLVMCXXShorthands.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#ifndef INCLUDE_PHASAR_UTILS_LLVMCXXSHORTHANDS_H_
22
#define INCLUDE_PHASAR_UTILS_LLVMCXXSHORTHANDS_H_
33
// This contains LLVM IR Shorthands specific to C++
4-
// See https://mapping-high-level-constructs-to-llvm-ir.readthedocs.io/en/latest/object-oriented-constructs/classes.html
4+
// See
5+
// https://mapping-high-level-constructs-to-llvm-ir.readthedocs.io/en/latest/object-oriented-constructs/classes.html
56
// for examples
67

78
#include "llvm/IR/Instructions.h"

include/phasar/Utils/LLVMShorthands.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include <string>
2121
#include <vector>
2222

23-
#include "llvm/IR/Instructions.h"
2423
#include "llvm/IR/Function.h"
24+
#include "llvm/IR/Instructions.h"
2525
#include "llvm/IR/Value.h"
2626

2727
#include "phasar/Utils/Utilities.h"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
#include "phasar/PhasarLLVM/Pointer/LLVMPointsToInfo.h"
2626
#include "phasar/PhasarLLVM/TypeHierarchy/LLVMTypeHierarchy.h"
2727

28+
#include "phasar/Utils/LLVMCXXShorthands.h"
2829
#include "phasar/Utils/LLVMIRToSrc.h"
2930
#include "phasar/Utils/LLVMShorthands.h"
30-
#include "phasar/Utils/LLVMCXXShorthands.h"
3131
#include "phasar/Utils/Logger.h"
3232
#include "phasar/Utils/PAMMMacros.h"
3333
#include "phasar/Utils/Utilities.h"

lib/Utils/LLVMCXXShorthands.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
#include "phasar/Utils/LLVMCXXShorthands.h"
2-
#include <llvm/Demangle/Demangle.h>
3-
#include <llvm/IR/Constants.h>
1+
#include "llvm/Demangle/Demangle.h"
2+
#include "llvm/IR/Constants.h"
43
#include "llvm/IR/GlobalVariable.h"
54
#include "llvm/IR/Instructions.h"
6-
#include <phasar/Utils/Logger.h>
5+
6+
#include "phasar/Utils/LLVMCXXShorthands.h"
7+
#include "phasar/Utils/Logger.h"
78

89
namespace psr {
910
// Setting up the vtable is counted towards the initialization of an
@@ -41,4 +42,4 @@ bool isTouchVTableInst(const llvm::StoreInst *Store) {
4142
} /* end vtable set-up instruction */
4243
return false;
4344
}
44-
}
45+
} // namespace psr

0 commit comments

Comments
 (0)