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 6a8a59b commit e1e9b43Copy full SHA for e1e9b43
lld/COFF/DriverUtils.cpp
@@ -252,8 +252,8 @@ void LinkerDriver::parseDosStub(StringRef path) {
252
size_t bufferSize = stub->getBufferSize();
253
const char *bufferStart = stub->getBufferStart();
254
// MS link.exe compatibility:
255
- // 1. stub must be greater than or equal to 64 bytes
256
- // 2. stub must be start with a valid dos signature 'MZ'
+ // 1. stub must greater than or equal to 64 bytes
+ // 2. stub must start with a valid dos signature 'MZ'
257
if (bufferSize < 0x40)
258
Err(ctx) << "/stub: stub must be greater than or equal to 64 bytes: "
259
<< path;
0 commit comments