Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Khmelevsky <och95@yandex.ru>2022-03-20 15:31:16 +0300
committerVladislav Khmelevsky <och95@yandex.ru>2022-03-31 22:28:50 +0300
commitfed958c6cc596e53971fca0e884b33483a85c12e (patch)
treedc21703adfa2a91df883bcc7f7855b760e24247e /bolt/lib/Core/BinaryEmitter.cpp
parent1c5663458bbbee05e3312e9682f18e526b4750d1 (diff)
[BOLT] AArch64: Emit text objects
BOLT treats aarch64 objects located in text as empty functions with contant islands. Emit them with at least 8-byte alignment to the new text section. Vladislav Khmelevsky, Advanced Software Technology Lab, Huawei Differential Revision: https://reviews.llvm.org/D122097
Diffstat (limited to 'bolt/lib/Core/BinaryEmitter.cpp')
-rw-r--r--bolt/lib/Core/BinaryEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/lib/Core/BinaryEmitter.cpp b/bolt/lib/Core/BinaryEmitter.cpp
index 914549651fe7..f923f6f28ade 100644
--- a/bolt/lib/Core/BinaryEmitter.cpp
+++ b/bolt/lib/Core/BinaryEmitter.cpp
@@ -277,7 +277,7 @@ void BinaryEmitter::emitFunctions() {
}
bool BinaryEmitter::emitFunction(BinaryFunction &Function, bool EmitColdPart) {
- if (Function.size() == 0)
+ if (Function.size() == 0 && !Function.hasIslandsInfo())
return false;
if (Function.getState() == BinaryFunction::State::Empty)