LLVM has unaligned loads and stores now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71449 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-05-11 18:06:05 +00:00
parent 01746745f1
commit 0d9bb68d6d

View File

@ -125,8 +125,7 @@ specific vector types are target dependent.
//===---------------------------------------------------------------------===//
We should add 'unaligned load/store' nodes, and produce them from code like
this:
We should and produce and unaligned load from code like this:
v4sf example(float *P) {
return (v4sf){P[0], P[1], P[2], P[3] };