Skip to content

Commit b4b89a6

Browse files
committed
[Unifomity] Fix type of ValueRefNull (NFC)
ValueRefNull has no current users.
1 parent 7275c17 commit b4b89a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/GenericSSAContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ template <typename _FunctionT> class GenericSSAContext {
5454

5555
// The null value for ValueRefT. For LLVM IR and MIR, this is simply the
5656
// default constructed value.
57-
static constexpr ValueRefT *ValueRefNull = {};
57+
static constexpr ValueRefT ValueRefNull = {};
5858

5959
// An InstructionT usually defines one or more ValueT objects.
6060
using InstructionT = typename SSATraits::InstructionT;

0 commit comments

Comments
 (0)