summaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Module.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-04 01:39:08 +0000
committerDan Gohman <gohman@apple.com>2010-08-04 01:39:08 +0000
commitd98af0a5b86425fdc723bb54fc59247c585d63ab (patch)
tree98f430708144f58c8aa367b68883888aa4067c8b /lib/VMCore/Module.cpp
parent2511bd06dea977b68f9254095afdb71782d7dda1 (diff)
downloadexternal_llvm-d98af0a5b86425fdc723bb54fc59247c585d63ab.zip
external_llvm-d98af0a5b86425fdc723bb54fc59247c585d63ab.tar.gz
external_llvm-d98af0a5b86425fdc723bb54fc59247c585d63ab.tar.bz2
Eliminate unnecessary empty string literals.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Module.cpp')
-rw-r--r--lib/VMCore/Module.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp
index 507d249..d7ddf96 100644
--- a/lib/VMCore/Module.cpp
+++ b/lib/VMCore/Module.cpp
@@ -58,7 +58,7 @@ template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
//
Module::Module(StringRef MID, LLVMContext& C)
- : Context(C), Materializer(NULL), ModuleID(MID), DataLayout("") {
+ : Context(C), Materializer(NULL), ModuleID(MID) {
ValSymTab = new ValueSymbolTable();
TypeSymTab = new TypeSymbolTable();
NamedMDSymTab = new StringMap<NamedMDNode *>();