Commit ba2def25 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winegcc: Add a missing break.

parent 71ad4add
......@@ -737,6 +737,7 @@ static void compile(struct options* opts, const char* lang)
strarray_add(comp_args, "-D__stdcall=__attribute__((pcs(\"aapcs-vfp\")))");
strarray_add(comp_args, "-D__cdecl=__stdcall");
strarray_add(comp_args, "-D__fastcall=__stdcall");
break;
case CPU_POWERPC:
strarray_add(comp_args, "-D__stdcall=");
strarray_add(comp_args, "-D__cdecl=");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment