mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 18:06:32 +00:00

Updated the RUN line in several test cases to use the new PM syntax opt -passes=<pipeline> instead of the deprecated syntax opt -pass1 -pass2 This was not a complete cleanup in clang/test. But just a swipe using some simple search-and-replace. Mainly for RUN lines involving -mem2reg, -instnamer and -early-cse.
14 lines
434 B
C
14 lines
434 B
C
// RUN: %clang_cc1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -S -o - -emit-llvm %s | opt -S -passes=mem2reg | FileCheck %s
|
|
// Test ARM64 SIMD vcreate intrinsics
|
|
|
|
// REQUIRES: aarch64-registered-target || arm-registered-target
|
|
|
|
#include <arm_neon.h>
|
|
|
|
float32x2_t test_vcreate_f32(uint64_t a1) {
|
|
// CHECK: test_vcreate_f32
|
|
return vcreate_f32(a1);
|
|
// CHECK: bitcast {{.*}} to <2 x float>
|
|
// CHECK-NEXT: ret
|
|
}
|