forked from OSchip/llvm-project
Fix recent test for more diverse environments.
I think the main issue was the lack of -ffreestanding, which pulled in the host's stdint.h. After that things went rapidly downhill. llvm-svn: 172653
This commit is contained in:
parent
69fc38f02f
commit
bd7c169664
|
|
@ -1,6 +1,9 @@
|
||||||
// REQUIRES: arm-registered-target
|
// REQUIRES: arm-registered-target
|
||||||
// RUN: %clang -target thumbv7-none-linux-gnueabihf \
|
// RUN: %clang_cc1 -triple thumbv7-none-linux-gnueabihf \
|
||||||
// RUN: -mcpu=cortex-a8 -mfloat-abi=hard \
|
// RUN: -target-abi aapcs \
|
||||||
|
// RUN: -target-cpu cortex-a8 \
|
||||||
|
// RUN: -mfloat-abi hard \
|
||||||
|
// RUN: -ffreestanding \
|
||||||
// RUN: -O3 -S -emit-llvm -o - %s | FileCheck %s
|
// RUN: -O3 -S -emit-llvm -o - %s | FileCheck %s
|
||||||
|
|
||||||
#include <arm_neon.h>
|
#include <arm_neon.h>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue