From e4e00f2cfecea7649dee554f815531084347c1ef Mon Sep 17 00:00:00 2001
From: Nadav Rotem In addition to many minor performance tweaks and bug fixes, this release
includes a few major enhancements and additions to the optimizers: Loop Vectorizer - We've added a basic loop vectorizer and we are now able
+ Loop Vectorizer - We've added a basic loop vectorizer and we are now able
to vectorize small loops. The loop vectorizer is disabled by default and
- can be enabled using the -mllvm -vectorize flags.
+ for (i=0; i<n; i++) {
+ a[i] = b[i+1] + c[i+3] + i;
+ }
+
+
+