spurserh

Results 11 comments of spurserh

Should also detect pointer aliasing. See TranslatorTest.PointerAliasing.

This may actually be a bug when it comes to assignments in short-circuit expressions.

A quick work-around hack is to set unsequenced_gen_backwards_ = false in xlscc/translator.h

#pragma hls_top void my_package(char x[32], char y[1]) { y[0] = 1 + x[0] - 2 * x[1] - x[2] - x[4] + x[5] + x[6] - x[7] - x[10] -...

Probably obsoleted by https://github.com/google/xls/issues/572

He just wants to use xlscc, opt, codegen. Any possibility you could point me to where he should try commenting things out?

I'm not able to reproduce this at HEAD in google3. I get: module test_block( input wire [31:0] in1, input wire [31:0] atan, output wire [31:0] out ); assign out =...