@@ -1621,11 +1621,10 @@ ProgramManager::compile(const device_image_plain &DeviceImage,
1621
1621
1622
1622
const RTDeviceBinaryImage *ImgPtr = InputImpl->get_bin_image_ref ();
1623
1623
const RTDeviceBinaryImage &Img = *ImgPtr;
1624
- const char * compileOptions = Img.getCompileOptions ();
1624
+ const char * compileOptions = Img.getCompileOptions ();
1625
1625
RT::PiResult Error = Plugin.call_nocheck <PiApiKind::piProgramCompile>(
1626
1626
ObjectImpl->get_program_ref (), /* num devices=*/ Devs.size (),
1627
- PIDevices.data (),
1628
- compileOptions,
1627
+ PIDevices.data (), compileOptions,
1629
1628
/* num_input_headers=*/ 0 , /* input_headers=*/ nullptr ,
1630
1629
/* header_include_names=*/ nullptr ,
1631
1630
/* pfn_notify=*/ nullptr , /* user_data*/ nullptr );
@@ -1653,8 +1652,8 @@ ProgramManager::link(const std::vector<device_image_plain> &DeviceImages,
1653
1652
PIDevices.reserve (Devs.size ());
1654
1653
for (const device &Dev : Devs)
1655
1654
PIDevices.push_back (getSyclObjImpl (Dev)->getHandleRef ());
1656
-
1657
- std::vector<const char *> linkOptions;
1655
+
1656
+ std::vector<const char *> linkOptions;
1658
1657
for (auto &DeviceImage : DeviceImages) {
1659
1658
const std::shared_ptr<device_image_impl> &InputImpl =
1660
1659
getSyclObjImpl (DeviceImage);
0 commit comments