brintos

brintos / llvm-project-archived public Read only

0
0
Text · 342 B · c652944 Raw
13 lines · c
1// RUN: %clang_cc1 -triple armebv7-linux-gnueabihf -target-feature +neon \2// RUN:  -Wdeclaration-after-statement -fsyntax-only -verify %s3// REQUIRES: arm-registered-target4// https://github.com/llvm/llvm-project/issues/540625#include <arm_neon.h>6 7uint8x16_t a;8 9uint8x16_t x(void) {10  return vshrq_n_u8(a, 8);11}12// expected-no-diagnostics13