diff options
-rw-r--r-- | include/llvm/Constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index c03072a18a..230d6ffb47 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; } |