21 lines
879 B
C
21 lines
879 B
C
|
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||
|
// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -target-feature +bf16 -S -disable-O0-optnone -Werror -Wall -emit-llvm -o - %s | opt -S -passes=mem2reg,tailcallelim | FileCheck %s
|
||
|
// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -target-feature +bf16 -S -disable-O0-optnone -Werror -Wall -emit-llvm -o - -x c++ %s | opt -S -passes=mem2reg,tailcallelim | FileCheck %s -check-prefix=CPP-CHECK
|
||
|
|
||
|
// REQUIRES: aarch64-registered-target
|
||
|
|
||
|
#include <arm_sve.h>
|
||
|
|
||
|
// CHECK-LABEL: @test_svundef_bf16(
|
||
|
// CHECK-NEXT: entry:
|
||
|
// CHECK-NEXT: ret <vscale x 8 x bfloat> undef
|
||
|
//
|
||
|
// CPP-CHECK-LABEL: @_Z17test_svundef_bf16v(
|
||
|
// CPP-CHECK-NEXT: entry:
|
||
|
// CPP-CHECK-NEXT: ret <vscale x 8 x bfloat> undef
|
||
|
//
|
||
|
svbfloat16_t test_svundef_bf16()
|
||
|
{
|
||
|
return svundef_bf16();
|
||
|
}
|