diff options
author | Martin Storsjo <martin@martin.st> | 2017-10-26 20:11:32 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2017-10-26 20:11:32 +0000 |
commit | 6c1fd2992aa2741ab88a8c0ac38f79e4621c2983 (patch) | |
tree | 1d4dde36e00f94939a19e31ec4a178dea7753757 /llvm/lib/Object/COFFModuleDefinition.cpp | |
parent | 356347b58d18b5b7984fbc5487532f49c7e98237 (diff) | |
download | bcm5719-llvm-6c1fd2992aa2741ab88a8c0ac38f79e4621c2983.tar.gz bcm5719-llvm-6c1fd2992aa2741ab88a8c0ac38f79e4621c2983.zip |
[COFF] Support ordinals in def files with space between @ and the number
Both GNU ld and MS link.exe support declaring ordinals this way.
A test will be added in lld.
Differential Revision: https://reviews.llvm.org/D39327
llvm-svn: 316690
Diffstat (limited to 'llvm/lib/Object/COFFModuleDefinition.cpp')
-rw-r--r-- | llvm/lib/Object/COFFModuleDefinition.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/lib/Object/COFFModuleDefinition.cpp b/llvm/lib/Object/COFFModuleDefinition.cpp index 6ea6015eabc..e2208016eb5 100644 --- a/llvm/lib/Object/COFFModuleDefinition.cpp +++ b/llvm/lib/Object/COFFModuleDefinition.cpp @@ -250,13 +250,18 @@ private: for (;;) { read(); if (Tok.K == Identifier && Tok.Value[0] == '@') { - if (Tok.Value.drop_front().getAsInteger(10, E.Ordinal)) { - // Not an ordinal modifier at all, but the next export (fastcall - // decorated) - complete the current one. + if (Tok.Value == "@") { + // "foo @ 10" + read(); + Tok.Value.getAsInteger(10, E.Ordinal); + } else if (Tok.Value.drop_front().getAsInteger(10, E.Ordinal)) { + // "foo \n @bar" - Not an ordinal modifier at all, but the next + // export (fastcall decorated) - complete the current one. unget(); Info.Exports.push_back(E); return Error::success(); } + // "foo @10" read(); if (Tok.K == KwNoname) { E.Noname = true; |