summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-11-23 19:38:34 +0000
committerBob Wilson <bob.wilson@apple.com>2010-11-23 19:38:34 +0000
commitb055f740bd25317fabd1065f2c95bc4f03cc1b5f (patch)
treec2be2dc8378530900fbd6c7e7502542f6cc7a655 /utils
parentb70ebd2aa3b6f4546d4734e7bcdbed2017036b4d (diff)
downloadllvm-b055f740bd25317fabd1065f2c95bc4f03cc1b5f.tar.gz
llvm-b055f740bd25317fabd1065f2c95bc4f03cc1b5f.tar.bz2
llvm-b055f740bd25317fabd1065f2c95bc4f03cc1b5f.tar.xz
Fix copy-and-paste error in exception message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120033 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/NeonEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp
index 5fa60ae1c7..24dcaeddfe 100644
--- a/utils/TableGen/NeonEmitter.cpp
+++ b/utils/TableGen/NeonEmitter.cpp
@@ -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';
}