blob: ddfa147705d500061c194014c9e8e6391f1edaf8 [file] [log] [blame]
Tim Northover58672972016-03-09 18:54:42 +00001// RUN: %clang_cc1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -S -o - -emit-llvm %s | opt -S -mem2reg | FileCheck %s
Tim Northovera2ee4332014-03-29 15:09:45 +00002// Test ARM64 SIMD vcreate intrinsics
3
Tim Northovera2ee4332014-03-29 15:09:45 +00004#include <arm_neon.h>
5
6float32x2_t test_vcreate_f32(uint64_t a1) {
7 // CHECK: test_vcreate_f32
8 return vcreate_f32(a1);
9 // CHECK: bitcast {{.*}} to <2 x float>
10 // CHECK-NEXT: ret
11}