tweak build script to allow clang builds of mule_main; fix clang build

This commit is contained in:
Ryan Fleury
2024-01-19 13:02:33 -08:00
parent f15bc3de73
commit 123c3104a5
3 changed files with 12 additions and 9 deletions
+2 -2
View File
@@ -1407,7 +1407,7 @@ extended_type_coverage_eval_tests(void){
Base *base_array[1024] = {0};
for(int i = 0; i < sizeof(base_array)/sizeof(base_array[0]); i += 1)
{
if(i & 1 == 1)
if((i & 1) == 1)
{
base_array[i] = new DerivedA();
}
@@ -1999,7 +1999,7 @@ control_flow_stepping_tests(void){
if (i <= 1) goto done;
if ((i&1) == 0) goto even_case;
odd_case:
// odd_case:
i = 3*i + 1;
even_case: