aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-05-11 18:06:05 +0000
committerDan Gohman <gohman@apple.com>2009-05-11 18:06:05 +0000
commit0d9bb68d6d8a8a3ac07a2262b8062d88cba80ff4 (patch)
tree0b73755d42342f75e8555e49510df5b8a50e320c /lib
parent01746745f1287effa1772ef51b973988afcea699 (diff)
downloadexternal_llvm-0d9bb68d6d8a8a3ac07a2262b8062d88cba80ff4.zip
external_llvm-0d9bb68d6d8a8a3ac07a2262b8062d88cba80ff4.tar.gz
external_llvm-0d9bb68d6d8a8a3ac07a2262b8062d88cba80ff4.tar.bz2
LLVM has unaligned loads and stores now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71449 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/README.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt
index e5eca96..767a18d 100644
--- a/lib/Target/README.txt
+++ b/lib/Target/README.txt
@@ -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] };