summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Robinson <paul.robinson@sony.com>2017-05-11 02:07:08 +0000
committerPaul Robinson <paul.robinson@sony.com>2017-05-11 02:07:08 +0000
commita1f97d7c38398821a35f23909fc6ef69b0021ed0 (patch)
tree012cdd1ea86a37405836b9bd90bbcbca5b2f792b
parent9226279daa6f38a060908080e3007bfb43b4694f (diff)
downloadbcm5719-llvm-a1f97d7c38398821a35f23909fc6ef69b0021ed0.tar.gz
bcm5719-llvm-a1f97d7c38398821a35f23909fc6ef69b0021ed0.zip
Remove redundant initialization. NFC
Post-commit review of r301940 by David Blaikie. llvm-svn: 302756
-rw-r--r--llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h b/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
index e21245b97b7..39a7ef71de9 100644
--- a/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
+++ b/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
@@ -30,7 +30,7 @@ public:
struct FileNameEntry {
FileNameEntry() = default;
- StringRef Name = StringRef();
+ StringRef Name;
uint64_t DirIdx = 0;
uint64_t ModTime = 0;
uint64_t Length = 0;
OpenPOWER on IntegriCloud