diff options
author | Mikhail Borisov <borisov.mikhail@gmail.com> | 2022-02-10 16:45:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:39 +0300 |
commit | a6a92afe03e02795227d2641b49819b687f088f8 (patch) | |
tree | f6984a1d27d5a7ec88a6fdd6e20cd5b7693b6ece /tools/rescompressor/main.cpp | |
parent | c6dc8b8bd530985bc4cce0137e9a5de32f1087cb (diff) | |
download | ydb-a6a92afe03e02795227d2641b49819b687f088f8.tar.gz |
Restoring authorship annotation for Mikhail Borisov <borisov.mikhail@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'tools/rescompressor/main.cpp')
-rw-r--r-- | tools/rescompressor/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/rescompressor/main.cpp b/tools/rescompressor/main.cpp index 9aba1002c5d..074211eae96 100644 --- a/tools/rescompressor/main.cpp +++ b/tools/rescompressor/main.cpp @@ -42,12 +42,12 @@ private: } void WriteSymbolSize(TStringBuf constname) { - AsmOut << "%ifidn __OUTPUT_FORMAT__,elf64\n"; + AsmOut << "%ifidn __OUTPUT_FORMAT__,elf64\n"; AsmOut << "size " << AsmPrefix << constname << " " << AsmPrefix << constname << ".end - " << AsmPrefix << constname << "\n"; - AsmOut << "size " << AsmPrefix << constname << "Size 4\n"; - AsmOut << "%endif\n"; - } - + AsmOut << "size " << AsmPrefix << constname << "Size 4\n"; + AsmOut << "%endif\n"; + } + void WriteIncBin(TStringBuf constname, TStringBuf filename, const TString& data) { AsmOut << AsmPrefix << constname << ":\nincbin \"" << Basename(filename) << "\"\n"; AsmOut << ".end:\n"; |