mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 17:43:35 +03:00
Fix typo
This commit is contained in:
parent
82c841534c
commit
044dd7bc9d
5 changed files with 11 additions and 11 deletions
|
@ -328,7 +328,7 @@ void applyAttrTarget(StructLiteralExp *sle, llvm::Function *func, IrFunction *ir
|
|||
|
||||
if (!CPU.empty()) {
|
||||
func->addFnAttr("target-cpu", CPU);
|
||||
irFunc->targetCpuOverriden = true;
|
||||
irFunc->targetCpuOverridden = true;
|
||||
}
|
||||
|
||||
if (!features.empty()) {
|
||||
|
@ -338,7 +338,7 @@ void applyAttrTarget(StructLiteralExp *sle, llvm::Function *func, IrFunction *ir
|
|||
sort(features.begin(), features.end());
|
||||
func->addFnAttr("target-features",
|
||||
llvm::join(features.begin(), features.end(), ","));
|
||||
irFunc->targetFeaturesOverriden = true;
|
||||
irFunc->targetFeaturesOverridden = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue