Skip to content

Commit

Permalink
fixed -b -32 patching error
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Clint Whaley committed Jul 17, 2012
1 parent 5cd827d commit b25a555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AtlasBase/Clint/atlconf.base
Expand Up @@ -7813,7 +7813,7 @@ int main(int nargs, char **args)
*/
if (asmb == gas_x86_64 && ptrbits == 32)
asmb = gas_x86_32;
else if (asmb == gas_x86_32 && (ptrbits == 64 || ptrbits == -32)
else if (asmb == gas_x86_32 && (ptrbits == 64 || ptrbits == -32))
asmb = gas_x86_64;
/*
* Now that we've detected architecture stuff, kill assembly dialect for
Expand Down

0 comments on commit b25a555

Please sign in to comment.