aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-06-19 05:32:09 +0000
committerBob Wilson <bob.wilson@apple.com>2010-06-19 05:32:09 +0000
commit5f85e6378998a1d3120738c9136907ddf4873c00 (patch)
treeff05c76539449366e12cad4a408b18ce2d1babd9
parent3b1d5fdd4868364cc49a1701f23dc387ecd5d3f6 (diff)
downloadexternal_llvm-5f85e6378998a1d3120738c9136907ddf4873c00.zip
external_llvm-5f85e6378998a1d3120738c9136907ddf4873c00.tar.gz
external_llvm-5f85e6378998a1d3120738c9136907ddf4873c00.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
-rw-r--r--lib/Target/ARM/ARMISelLowering.cpp2
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();
}