diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-06-19 05:32:09 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-06-19 05:32:09 +0000 |
commit | dc076da4d25a447982c0629da91e322eda511cbf (patch) | |
tree | ff05c76539449366e12cad4a408b18ce2d1babd9 /lib/Target/ARM | |
parent | f6ff00304302afa6d21aa9ec4177552665ca9b36 (diff) | |
download | external_llvm-dc076da4d25a447982c0629da91e322eda511cbf.zip external_llvm-dc076da4d25a447982c0629da91e322eda511cbf.tar.gz external_llvm-dc076da4d25a447982c0629da91e322eda511cbf.tar.bz2 |
Fix error message to match function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index d0c4022..333907c 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -2949,7 +2949,7 @@ static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, } default: - llvm_unreachable("unexpected size for EncodeNEONModImm"); + llvm_unreachable("unexpected size for isNEONModifiedImm"); return SDValue(); } |