diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-11-23 19:38:34 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-11-23 19:38:34 +0000 |
commit | b055f740bd25317fabd1065f2c95bc4f03cc1b5f (patch) | |
tree | c2be2dc8378530900fbd6c7e7502542f6cc7a655 /utils | |
parent | b70ebd2aa3b6f4546d4734e7bcdbed2017036b4d (diff) |
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.cpp | 2 |
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'; } |