From: Craig Topper Date: Thu, 13 Apr 2017 07:31:52 +0000 (+0000) Subject: Fix typo in static_assert message. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d5761e1a92cd0382e08b17598b241b2c6700371;p=llvm Fix typo in static_assert message. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300179 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/Metadata.h b/include/llvm/IR/Metadata.h index 0647e4253d3..fd79355bff1 100644 --- a/include/llvm/IR/Metadata.h +++ b/include/llvm/IR/Metadata.h @@ -78,7 +78,7 @@ public: protected: Metadata(unsigned ID, StorageType Storage) : SubclassID(ID), Storage(Storage), SubclassData16(0), SubclassData32(0) { - static_assert(sizeof(*this) == 8, "Metdata fields poorly packed"); + static_assert(sizeof(*this) == 8, "Metadata fields poorly packed"); } ~Metadata() = default;