diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index c03072a18ae..230d6ffb478 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -136,7 +136,7 @@ public: /// bool equalsInt(unsigned char V) const { assert(V <= 127 && - "equals: Can only be used with very small positive constants!"); + "equalsInt: Can only be used with very small positive constants!"); return Val.Unsigned == V; }