Commit bc0d1696 authored by Arthur Eubanks's avatar Arthur Eubanks
Browse files

Fix missing argument introduced by D108788

Reviewed By: aeubanks

Differential Revision: https://reviews.llvm.org/D109132
parent 1c503e92
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -472,7 +472,7 @@ public:
  LLVM_NODISCARD AttributeList
  addAttribute(LLVMContext &C, unsigned Index, StringRef Kind,
               StringRef Value = StringRef()) const {
    return addAttributeAtIndex(C, Index, Kind);
    return addAttributeAtIndex(C, Index, Kind, Value);
  }

  /// Add an attribute to the attribute set at the given index.