[llvm-commits] CVS: llvm/lib/Bytecode/Reader/Reader.cpp

Reid Spencer reid at x10sys.com
Thu Jan 18 16:07:33 PST 2007



Changes in directory llvm/lib/Bytecode/Reader:

Reader.cpp updated: 1.223 -> 1.224
---
Log message:

Back out last changes for dataLayout. Much more work is needed.


---
Diffs of the changes:  (+0 -7)

 Reader.cpp |    7 -------
 1 files changed, 7 deletions(-)


Index: llvm/lib/Bytecode/Reader/Reader.cpp
diff -u llvm/lib/Bytecode/Reader/Reader.cpp:1.223 llvm/lib/Bytecode/Reader/Reader.cpp:1.224
--- llvm/lib/Bytecode/Reader/Reader.cpp:1.223	Thu Jan 18 17:24:24 2007
+++ llvm/lib/Bytecode/Reader/Reader.cpp	Thu Jan 18 18:07:16 2007
@@ -2013,13 +2013,6 @@
   TheModule->setTargetTriple(triple);
   if (Handler)
     Handler->handleTargetTriple(triple);
-
-  // Read the data layout string and place into the module.
-  std::string datalayout = read_str();
-  TheModule->setDataLayout(datalayout);
-  // FIXME: Implement
-  // if (Handler)
-    // Handler->handleDataLayout(datalayout);
   
   if (At != BlockEnd) {
     // If the file has section info in it, read the section names now.






More information about the llvm-commits mailing list