From: Craig Topper Date: Tue, 27 Jun 2017 19:57:51 +0000 (+0000) Subject: [Constants] Fix copy-pasto in llvm_unreachable message. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa9b82348cbe2f856b0b9f0c70f27ae7756173a5;p=llvm [Constants] Fix copy-pasto in llvm_unreachable message. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306456 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/Constants.cpp b/lib/IR/Constants.cpp index 27150a89d9b..d387a6f0ecb 100644 --- a/lib/IR/Constants.cpp +++ b/lib/IR/Constants.cpp @@ -716,7 +716,7 @@ bool ConstantFP::isExactlyValue(const APFloat &V) const { /// Remove the constant from the constant table. void ConstantFP::destroyConstantImpl() { - llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!"); + llvm_unreachable("You can't ConstantFP->destroyConstantImpl()!"); } //===----------------------------------------------------------------------===//