1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Change keyword to datalayout

llvm-svn: 31107
This commit is contained in:
Chris Lattner 2006-10-22 06:06:56 +00:00
parent 50b3810d9a
commit 9e59066602

View File

@ -783,7 +783,7 @@ void AssemblyWriter::printModule(const Module *M) {
Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
if (!M->getDataLayout().empty())
Out << "target data = \"" << M->getDataLayout() << "\"\n";
Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
switch (M->getEndianness()) {
case Module::LittleEndian: Out << "target endian = little\n"; break;