We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a53d77 commit bb0c234Copy full SHA for bb0c234
clang/lib/Basic/Targets/ARM.cpp
@@ -25,6 +25,7 @@ using namespace clang::targets;
25
void ARMTargetInfo::setABIAAPCS() {
26
IsAAPCS = true;
27
28
+ fprintf(stderr, "setabiaapcs");
29
DoubleAlign = LongLongAlign = LongDoubleAlign = SuitableAlign = 64;
30
BFloat16Width = BFloat16Align = 16;
31
BFloat16Format = &llvm::APFloat::BFloat();
@@ -75,6 +76,7 @@ void ARMTargetInfo::setABIAPCS(bool IsAAPCS16) {
75
76
77
IsAAPCS = false;
78
79
+ fprintf(stderr, "is aapcs16 %d\n", IsAAPCS);
80
if (IsAAPCS16)
81
82
else
0 commit comments