diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-10 22:08:18 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-10 22:08:18 +0000 |
commit | 13a7db5b9c4f5e543d037be68ec3428216bfd550 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/CodeGen/X86/2011-06-03-x87chain.ll | |
parent | 0eb46f5d1e06a4284663d636a74b06adc3a161d7 (diff) | |
parent | 31195f0bdca6ee2a5e72d07edf13e1d81206d949 (diff) | |
download | external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.zip external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.gz external_llvm-13a7db5b9c4f5e543d037be68ec3428216bfd550.tar.bz2 |
am 31195f0b: Merge "Update aosp/master llvm for rebase to r233350"
* commit '31195f0bdca6ee2a5e72d07edf13e1d81206d949':
Update aosp/master llvm for rebase to r233350
Diffstat (limited to 'test/CodeGen/X86/2011-06-03-x87chain.ll')
-rw-r--r-- | test/CodeGen/X86/2011-06-03-x87chain.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/2011-06-03-x87chain.ll b/test/CodeGen/X86/2011-06-03-x87chain.ll index 5275b68..c78e8e3 100644 --- a/test/CodeGen/X86/2011-06-03-x87chain.ll +++ b/test/CodeGen/X86/2011-06-03-x87chain.ll @@ -2,7 +2,7 @@ define float @chainfail1(i64* nocapture %a, i64* nocapture %b, i32 %x, i32 %y, float* nocapture %f) nounwind uwtable noinline ssp { entry: - %tmp1 = load i64* %a, align 8 + %tmp1 = load i64, i64* %a, align 8 ; Insure x87 ops are properly chained, order preserved. ; CHECK: fildll %conv = sitofp i64 %tmp1 to float @@ -22,8 +22,8 @@ entry: %mul = mul nsw i32 %y, %x %sub = add nsw i32 %mul, -1 %idxprom = sext i32 %sub to i64 - %arrayidx = getelementptr inbounds i64* %a, i64 %idxprom - %tmp4 = load i64* %arrayidx, align 8 + %arrayidx = getelementptr inbounds i64, i64* %a, i64 %idxprom + %tmp4 = load i64, i64* %arrayidx, align 8 ; CHECK: fildll %conv = sitofp i64 %tmp4 to float store float %conv, float* %f, align 4 @@ -35,7 +35,7 @@ entry: br i1 undef, label %while.end, label %while.body while.body: ; preds = %while.body, %entry - %x.1.copyload = load i24* undef, align 1 + %x.1.copyload = load i24, i24* undef, align 1 %conv = sitofp i24 %x.1.copyload to float %div = fmul float %conv, 0x3E80000000000000 store float %div, float* undef, align 4 |