mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
refactor: correct typo
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
d65b96be4e
commit
b1ffe640bb
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2024 Intel Corporation
|
||||
* Copyright (C) 2018-2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -64,10 +64,10 @@ Program::Program(Context *context, bool isBuiltIn, const ClDeviceVector &clDevic
|
||||
|
||||
std::string Program::getInternalOptions() const {
|
||||
auto pClDevice = clDevices[0];
|
||||
auto force32BitAddressess = pClDevice->getSharedDeviceInfo().force32BitAddressess;
|
||||
auto force32BitAddresses = pClDevice->getSharedDeviceInfo().force32BitAddresses;
|
||||
auto internalOptions = getOclVersionCompilerInternalOption(pClDevice->getEnabledClVersion());
|
||||
|
||||
if (force32BitAddressess && !isBuiltIn) {
|
||||
if (force32BitAddresses && !isBuiltIn) {
|
||||
CompilerOptions::concatenateAppend(internalOptions, CompilerOptions::arch32bit);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user