зеркало из https://github.com/microsoft/clang-1.git
Add arm_neon.h to the builtin intrinsics module map.
Fixes <rdar://problem/13933913>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182268 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
a722534711
Коммит
44b6fa3920
|
@ -4,6 +4,16 @@ module _Builtin_intrinsics [system] {
|
||||||
header "altivec.h"
|
header "altivec.h"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
explicit module arm {
|
||||||
|
requires arm
|
||||||
|
|
||||||
|
explicit module neon {
|
||||||
|
requires neon
|
||||||
|
header "arm_neon.h"
|
||||||
|
export *
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
explicit module intel {
|
explicit module intel {
|
||||||
requires x86
|
requires x86
|
||||||
export *
|
export *
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
// RUN: rm -rf %t
|
||||||
|
// RUN: %clang_cc1 -fsyntax-only -triple thumbv7-none-linux-gnueabihf -target-abi aapcs -target-cpu cortex-a8 -mfloat-abi hard -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -verify
|
||||||
|
// expected-no-diagnostics
|
||||||
|
// REQUIRES: arm-registered-target
|
||||||
|
|
||||||
|
@import _Builtin_intrinsics.arm.neon;
|
Загрузка…
Ссылка в новой задаче