From 049c48f1adf5cd7862cc4a48a3d3935a0e98ebb0 Mon Sep 17 00:00:00 2001
From: Misha Brukman <brukman+llvm@gmail.com>
Date: Mon, 19 Jul 2004 21:11:45 +0000
Subject: [PATCH] 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
---
 include/llvm/Constants.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
   }