We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15e98e5 commit 4a95073Copy full SHA for 4a95073
src/coreclr/tools/Common/InstructionSetHelpers.cs
@@ -122,7 +122,7 @@ public static InstructionSetSupport ConfigureInstructionSetSupport(string instru
122
string[] instructionSetParamsInput = instructionSet.Split(',');
123
for (int i = 0; i < instructionSetParamsInput.Length; i++)
124
{
125
- instructionSet = instructionSetParamsInput[i];
+ instructionSet = instructionSetParamsInput[i].Trim();
126
127
if (string.IsNullOrEmpty(instructionSet))
128
throw new CommandLineException(string.Format(mustNotBeMessage, ""));
0 commit comments