Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#### Platform support

#### Bug fixes
- Building multi-file D applications with control-flow protection will no longer cause LDC to throw an internal compiler error. (#4828)

# LDC 1.40.0 (2024-12-15)

Expand Down
7 changes: 5 additions & 2 deletions gen/modules.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,15 +391,18 @@ void registerModuleInfo(Module *m) {

void addModuleFlags(llvm::Module &m) {
const auto ModuleMinFlag = llvm::Module::Min;
const auto ConstantOne =
llvm::ConstantInt::get(LLType::getInt32Ty(m.getContext()), 1);
const auto ConstantOneMetadata = llvm::ConstantAsMetadata::get(ConstantOne);

if (opts::fCFProtection == opts::CFProtectionType::Return ||
opts::fCFProtection == opts::CFProtectionType::Full) {
m.addModuleFlag(ModuleMinFlag, "cf-protection-return", 1);
m.setModuleFlag(ModuleMinFlag, "cf-protection-return", ConstantOneMetadata);
}

if (opts::fCFProtection == opts::CFProtectionType::Branch ||
opts::fCFProtection == opts::CFProtectionType::Full) {
m.addModuleFlag(ModuleMinFlag, "cf-protection-branch", 1);
m.setModuleFlag(ModuleMinFlag, "cf-protection-branch", ConstantOneMetadata);
}
}

Expand Down
Loading