Merge pull request #2803 from kugelfuhr/kugelfuhr/fix-1162

Add a description for --memory-model to the docs
This commit is contained in:
Bob Andrews
2025-07-16 00:56:36 +02:00
committed by GitHub
2 changed files with 30 additions and 0 deletions

View File

@@ -1100,6 +1100,14 @@ int main (int argc, char* argv[])
OptSignedChars (Arg, 0);
break;
case 'm':
if (Arg[2] == 'm') {
OptMemoryModel (Arg, GetArg (&I, 3));
} else {
UnknownOption (Arg);
}
break;
case 'o':
SetOutputName (GetArg (&I, 2));
break;