diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-08 08:55:49 -0700 |
---|---|---|
committer | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-09 15:04:38 -0700 |
commit | 4c5e43da7792f75567b693105cc53e3f1992ad98 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/Transforms/SLPVectorizer/X86/flag.ll | |
parent | c75239e6119d0f9a74c57099d91cbc9bde56bf33 (diff) | |
download | external_llvm-4c5e43da7792f75567b693105cc53e3f1992ad98.zip external_llvm-4c5e43da7792f75567b693105cc53e3f1992ad98.tar.gz external_llvm-4c5e43da7792f75567b693105cc53e3f1992ad98.tar.bz2 |
Update aosp/master llvm for rebase to r233350
Change-Id: I07d935f8793ee8ec6b7da003f6483046594bca49
Diffstat (limited to 'test/Transforms/SLPVectorizer/X86/flag.ll')
-rw-r--r-- | test/Transforms/SLPVectorizer/X86/flag.ll | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/Transforms/SLPVectorizer/X86/flag.ll b/test/Transforms/SLPVectorizer/X86/flag.ll index 3ca5407..7db8d75 100644 --- a/test/Transforms/SLPVectorizer/X86/flag.ll +++ b/test/Transforms/SLPVectorizer/X86/flag.ll @@ -15,17 +15,17 @@ define i32 @rollable(i32* noalias nocapture %in, i32* noalias nocapture %out, i6 .lr.ph: ; preds = %0, %.lr.ph %i.019 = phi i64 [ %26, %.lr.ph ], [ 0, %0 ] %2 = shl i64 %i.019, 2 - %3 = getelementptr inbounds i32* %in, i64 %2 - %4 = load i32* %3, align 4 + %3 = getelementptr inbounds i32, i32* %in, i64 %2 + %4 = load i32, i32* %3, align 4 %5 = or i64 %2, 1 - %6 = getelementptr inbounds i32* %in, i64 %5 - %7 = load i32* %6, align 4 + %6 = getelementptr inbounds i32, i32* %in, i64 %5 + %7 = load i32, i32* %6, align 4 %8 = or i64 %2, 2 - %9 = getelementptr inbounds i32* %in, i64 %8 - %10 = load i32* %9, align 4 + %9 = getelementptr inbounds i32, i32* %in, i64 %8 + %10 = load i32, i32* %9, align 4 %11 = or i64 %2, 3 - %12 = getelementptr inbounds i32* %in, i64 %11 - %13 = load i32* %12, align 4 + %12 = getelementptr inbounds i32, i32* %in, i64 %11 + %13 = load i32, i32* %12, align 4 %14 = mul i32 %4, 7 %15 = add i32 %14, 7 %16 = mul i32 %7, 7 @@ -34,13 +34,13 @@ define i32 @rollable(i32* noalias nocapture %in, i32* noalias nocapture %out, i6 %19 = add i32 %18, 21 %20 = mul i32 %13, 7 %21 = add i32 %20, 28 - %22 = getelementptr inbounds i32* %out, i64 %2 + %22 = getelementptr inbounds i32, i32* %out, i64 %2 store i32 %15, i32* %22, align 4 - %23 = getelementptr inbounds i32* %out, i64 %5 + %23 = getelementptr inbounds i32, i32* %out, i64 %5 store i32 %17, i32* %23, align 4 - %24 = getelementptr inbounds i32* %out, i64 %8 + %24 = getelementptr inbounds i32, i32* %out, i64 %8 store i32 %19, i32* %24, align 4 - %25 = getelementptr inbounds i32* %out, i64 %11 + %25 = getelementptr inbounds i32, i32* %out, i64 %11 store i32 %21, i32* %25, align 4 %26 = add i64 %i.019, 1 %exitcond = icmp eq i64 %26, %n |