Fix copy-and-paste error in exception message.
authorBob Wilson <bob.wilson@apple.com>
Tue, 23 Nov 2010 19:38:34 +0000 (19:38 +0000)
committerBob Wilson <bob.wilson@apple.com>
Tue, 23 Nov 2010 19:38:34 +0000 (19:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120033 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/NeonEmitter.cpp

index 5fa60ae1c7d14f15be9bcd90e11b809aabcfc3ea..24dcaeddfe821e8245ab2ec4b6a52e19ed81bb6e 100644 (file)
@@ -89,7 +89,7 @@ static char Narrow(const char t) {
       return 'i';
     case 'f':
       return 'h';
-    default: throw "unhandled type in widen!";
+    default: throw "unhandled type in narrow!";
   }
   return '\0';
 }