1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

ADd a note

llvm-svn: 27324
This commit is contained in:
Chris Lattner 2006-04-01 04:08:29 +00:00
parent 79819f52dc
commit 894231e63e

View File

@ -154,3 +154,15 @@ where c1/c2 are constants.
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] };
}
//===---------------------------------------------------------------------===//