[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Sema / arm-mfp8.c
blob9ddc07c3a07979c1ab6fcf49c8c9a2e56e4c0b3c
1 // RUN: %clang_cc1 -fsyntax-only -verify -triple aarch64-arm-none-eabi -target-feature -fp8 %s
3 // REQUIRES: aarch64-registered-target
4 __mfp8 test_cast_from_float(unsigned in) {
5 return (__mfp8)in; // expected-error {{used type '__mfp8' where arithmetic or pointer type is required}}
8 unsigned test_cast_to_int(__mfp8 in) {
9 return (unsigned)in; // expected-error {{operand of type '__mfp8' where arithmetic or pointer type is required}}