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 | 0ae08935f6dd670f2045e67ba55b1e35b1ad386d (patch) | |
tree | 64be4f1d2f4e33ed428f7e55531c36fd2434b22a | |
parent | b01e742af7651361c2e49d22140dee9342d8d72e (diff) | |
download | bcm5719-llvm-0ae08935f6dd670f2045e67ba55b1e35b1ad386d.tar.gz bcm5719-llvm-0ae08935f6dd670f2045e67ba55b1e35b1ad386d.zip |
Fix error message to match function name.
llvm-svn: 106381
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index d0c40229d40..333907c4fb8 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/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(); } |