File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
llvm/include/llvm/Analysis Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,7 @@ template <bool ConstPointer = true> class ImplCachedBitsValue {
57
57
58
58
public:
59
59
ImplCachedBitsValue () = default ;
60
- ImplCachedBitsValue (ValuePointerType Pointer)
61
- : Pointer(Pointer, false ) {}
60
+ ImplCachedBitsValue (ValuePointerType Pointer) : Pointer(Pointer, false ) {}
62
61
ImplCachedBitsValue (ValuePointerType Pointer, const KnownBits &Known)
63
62
: Pointer(Pointer, true ), Known(Known) {}
64
63
@@ -71,7 +70,9 @@ template <bool ConstPointer = true> class ImplCachedBitsValue {
71
70
: Pointer(static_cast <ValuePointerType>(Value), true ), Known(Known) {}
72
71
73
72
[[nodiscard]] ValuePointerType getValue () { return Pointer.getPointer (); }
74
- [[nodiscard]] ValuePointerType getValue () const { return Pointer.getPointer (); }
73
+ [[nodiscard]] ValuePointerType getValue () const {
74
+ return Pointer.getPointer ();
75
+ }
75
76
76
77
[[nodiscard]] const KnownBits &getKnownBits (const SimplifyQuery &Q) const {
77
78
if (!hasKnownBits ())
You can’t perform that action at this time.
0 commit comments