File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ class MacX86Platform: public Platform
2626 if (cc)
2727 RegisterStdcallCallingConvention (cc);
2828 }
29+
30+ virtual bool GetFallbackEnabled () override
31+ {
32+ return false ;
33+ }
2934};
3035
3136
@@ -45,6 +50,11 @@ class MacX64Platform: public Platform
4550 RegisterStdcallCallingConvention (cc);
4651 }
4752 }
53+
54+ virtual bool GetFallbackEnabled () override
55+ {
56+ return false ;
57+ }
4858};
4959
5060
@@ -64,6 +74,11 @@ class MacArmv7Platform: public Platform
6474 RegisterStdcallCallingConvention (cc);
6575 }
6676 }
77+
78+ virtual bool GetFallbackEnabled () override
79+ {
80+ return false ;
81+ }
6782};
6883
6984
@@ -83,6 +98,11 @@ class MacArm64Platform: public Platform
8398 RegisterStdcallCallingConvention (cc);
8499 }
85100 }
101+
102+ virtual bool GetFallbackEnabled () override
103+ {
104+ return false ;
105+ }
86106};
87107
88108
You can’t perform that action at this time.
0 commit comments