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/Hexagon/vect/vect-fma.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/Hexagon/vect/vect-fma.ll')
-rw-r--r-- | test/CodeGen/Hexagon/vect/vect-fma.ll | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/CodeGen/Hexagon/vect/vect-fma.ll b/test/CodeGen/Hexagon/vect/vect-fma.ll new file mode 100644 index 0000000..c35e015 --- /dev/null +++ b/test/CodeGen/Hexagon/vect/vect-fma.ll @@ -0,0 +1,26 @@ +; RUN: llc -march=hexagon -mcpu=hexagonv5 < %s +; REQUIRES: asserts +; Used to fail with "SplitVectorResult #0: 0x16cbe60: v4f64 = fma" + +; ModuleID = 'bugpoint-reduced-simplified.bc' +target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32" +target triple = "hexagon-unknown-linux-gnu" + +define void @run() nounwind { +entry: + br label %polly.loop_header + +polly.loop_after: ; preds = %polly.loop_header + ret void + +polly.loop_header: ; preds = %polly.loop_body, %entry + %0 = icmp sle i32 undef, 399 + br i1 %0, label %polly.loop_body, label %polly.loop_after + +polly.loop_body: ; preds = %polly.loop_header + %_p_vec_full = load <4 x double>, <4 x double>* undef, align 8 + %mulp_vec = fmul <4 x double> %_p_vec_full, <double 7.000000e+00, double 7.000000e+00, double 7.000000e+00, double 7.000000e+00> + %addp_vec = fadd <4 x double> undef, %mulp_vec + store <4 x double> %addp_vec, <4 x double>* undef, align 8 + br label %polly.loop_header +} |