diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2016-11-03 17:01:38 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2016-11-03 17:01:38 +0000 |
commit | 30e002990402fa458fc1e5b0c68e2ee44badf6dd (patch) | |
tree | df5d6744ee634eb4398c49b89a877213a8dbcf57 /llvm/lib/Target/Hexagon | |
parent | 20c5fa8a313176e1602022de757848e9d3e73bb0 (diff) | |
download | bcm5719-llvm-30e002990402fa458fc1e5b0c68e2ee44badf6dd.tar.gz bcm5719-llvm-30e002990402fa458fc1e5b0c68e2ee44badf6dd.zip |
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.
llvm-svn: 285936
Diffstat (limited to 'llvm/lib/Target/Hexagon')
-rw-r--r-- | llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp index 9e2c2807643..c619c36164c 100644 --- a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp +++ b/llvm/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; |