[llvm-commits] CVS: llvm/lib/Target/README.txt

Chris Lattner lattner at cs.uiuc.edu
Fri Mar 31 20:08:41 PST 2006



Changes in directory llvm/lib/Target:

README.txt updated: 1.26 -> 1.27
---
Log message:

ADd a note


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

 README.txt |   12 ++++++++++++
 1 files changed, 12 insertions(+)


Index: llvm/lib/Target/README.txt
diff -u llvm/lib/Target/README.txt:1.26 llvm/lib/Target/README.txt:1.27
--- llvm/lib/Target/README.txt:1.26	Fri Mar 31 16:35:14 2006
+++ llvm/lib/Target/README.txt	Fri Mar 31 22:08:29 2006
@@ -154,3 +154,15 @@
 For packed types, TargetData.cpp::getTypeInfo() returns alignment that is equal
 to the type size. It works but can be overly conservative as the alignment of
 specific packed types are target dependent.
+
+//===---------------------------------------------------------------------===//
+
+We should add 'unaligned load/store' nodes, and produce them from code like
+this:
+
+v4sf example(float *P) {
+  return (v4sf){P[0], P[1], P[2], P[3] };
+}
+
+//===---------------------------------------------------------------------===//
+






More information about the llvm-commits mailing list