From: Misha Brukman Date: Mon, 19 Jul 2004 21:11:45 +0000 (+0000) Subject: Convert tabs to spaces; fix name of function in assert() description. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=049c48f1adf5cd7862cc4a48a3d3935a0e98ebb0;p=oota-llvm.git Convert tabs to spaces; fix name of function in assert() description. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15009 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }