Skip to content

Commit 3e13887

Browse files
committed
[CachedBitsValue] Formatting
1 parent 75eae19 commit 3e13887

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

llvm/include/llvm/Analysis/CachedBitsValue.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ template <bool ConstPointer = true> class ImplCachedBitsValue {
5757

5858
public:
5959
ImplCachedBitsValue() = default;
60-
ImplCachedBitsValue(ValuePointerType Pointer)
61-
: Pointer(Pointer, false) {}
60+
ImplCachedBitsValue(ValuePointerType Pointer) : Pointer(Pointer, false) {}
6261
ImplCachedBitsValue(ValuePointerType Pointer, const KnownBits &Known)
6362
: Pointer(Pointer, true), Known(Known) {}
6463

@@ -71,7 +70,9 @@ template <bool ConstPointer = true> class ImplCachedBitsValue {
7170
: Pointer(static_cast<ValuePointerType>(Value), true), Known(Known) {}
7271

7372
[[nodiscard]] ValuePointerType getValue() { return Pointer.getPointer(); }
74-
[[nodiscard]] ValuePointerType getValue() const { return Pointer.getPointer(); }
73+
[[nodiscard]] ValuePointerType getValue() const {
74+
return Pointer.getPointer();
75+
}
7576

7677
[[nodiscard]] const KnownBits &getKnownBits(const SimplifyQuery &Q) const {
7778
if (!hasKnownBits())

0 commit comments

Comments
 (0)