Skip to content

Commit 28e9b86

Browse files
authored
FPGA: Remove unnecessary comment (#2019)
1 parent c354357 commit 28e9b86

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

DirectProgramming/C++SYCL_FPGA/include/streaming_qrd.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,7 @@ struct StreamingQRD {
304304
if (i_gt_0[fanout_bank_idx] && j_ge_0[fanout_bank_idx]) {
305305
col[k] = a_compute[j].template get<k>();
306306
}
307-
// Using an else statement makes the compiler throw an
308-
// inexplicable warning when using non complex types:
309-
// "Compiler Warning: Memory instruction with unresolved
310-
// pointer may lead to bad QoR."
307+
311308
if (!i_gt_0[fanout_bank_idx] && j_ge_0[fanout_bank_idx]) {
312309
col[k] = a_load[j].template get<k>();
313310
}

0 commit comments

Comments
 (0)