diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:01:22 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:01:22 +0000 |
commit | 71d5a2540a98c81f5bcaeb48805e0e2881f530ef (patch) | |
tree | 5343938942df402b49ec7300a1c25a2d4ccd5821 /test/CodeGen/ARM/vcmp-crash.ll | |
parent | 31bbf64f3a4974a2d6c8b3b27ad2f519caf74057 (diff) |
Diffstat (limited to 'test/CodeGen/ARM/vcmp-crash.ll')
-rw-r--r-- | test/CodeGen/ARM/vcmp-crash.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/vcmp-crash.ll b/test/CodeGen/ARM/vcmp-crash.ll new file mode 100644 index 000000000000..2d3262be5849 --- /dev/null +++ b/test/CodeGen/ARM/vcmp-crash.ll @@ -0,0 +1,11 @@ +; RUN: llc -mcpu=cortex-m4 < %s | FileCheck %s + +target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64" +target triple = "thumbv7em-none--eabi" + +; CHECK: vcmp.f32 +define double @f(double %a, double %b, double %c, float %d) { + %1 = fcmp oeq float %d, 0.0 + %2 = select i1 %1, double %a, double %c + ret double %2 +} |