From: Chandler Carruth Date: Thu, 3 Nov 2016 17:01:38 +0000 (+0000) Subject: Delete a dead store found by PVS-Studio. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cad7687580aaff3d0ec6632e716b01cc2b9abca1;p=llvm Delete a dead store found by PVS-Studio. Quite sad we still aren't really using aggressive dead code warnings from Clang that we could potentially use to catch this and so many other things. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285936 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp b/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp index 9e2c2807643..c619c36164c 100644 --- a/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp +++ b/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp @@ -22,7 +22,6 @@ HexagonMCAsmInfo::HexagonMCAsmInfo(const Triple &TT) { Data16bitsDirective = "\t.half\t"; Data32bitsDirective = "\t.word\t"; Data64bitsDirective = nullptr; // .xword is only supported by V9. - ZeroDirective = "\t.skip\t"; CommentString = "//"; LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;