From 361dcef40626a907be954b69b464a863d1dfe112 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 11 May 2009 18:06:05 +0000 Subject: [PATCH] LLVM has unaligned loads and stores now. llvm-svn: 71449 --- lib/Target/README.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Target/README.txt b/lib/Target/README.txt index e5eca96c5a3..767a18dc225 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] };