Skip to content

Commit d17cfbe

Browse files
authored
Merge pull request #30982 from drodriguez/android-cfuncs-parse-check-aarch64
[android] Add check for __aarch64__ besides __arm__ and __arm64__.
2 parents 3d1bfde + c02fa2d commit d17cfbe

File tree

1 file changed

+1
-1
lines changed
  • test/Inputs/clang-importer-sdk/usr/include

1 file changed

+1
-1
lines changed

test/Inputs/clang-importer-sdk/usr/include/cfuncs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ double pow(double x, double y);
1414
long double powl(long double x, long double y);
1515

1616
void f16ptrfunc(__fp16 *);
17-
#if defined __arm__ || defined __arm64__
17+
#if defined __arm__ || defined __arm64__ || defined __aarch64__
1818
_Float16 f16func(_Float16);
1919
#endif
2020

0 commit comments

Comments
 (0)