Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix a couple of compiler warnings (#62) | Anton Blanchard | 2019-10-14 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | I see a few compiler warnings on gcc 9.2: src/ghdl.cc: In function ‘Yosys::RTLIL::SigSpec get_src(std::vector<Yosys::RTLIL::Wire*>&, GhdlSynth::Net)’: src/ghdl.cc:123:43: warning: ‘valzx’ may be used uninitialized in this function [-Wmaybe-uninitialized] 123 | switch(((val01 >> i)&1)+((valzx >> i)&1)*2) | ~~~~~~~^~~~~ src/ghdl.cc:123:26: warning: ‘val01’ may be used uninitialized in this function [-Wmaybe-uninitialized] 123 | switch(((val01 >> i)&1)+((valzx >> i)&1)*2) | ~~~~~~~^~~~~ src/ghdl.cc:99:26: warning: ‘val’ may be used uninitialized in this function [-Wmaybe-uninitialized] 99 | bits[i] = (val >> i) & 1 ? RTLIL::State::S1 : RTLIL::State::S0; | ~~~~~^~~~~ These both appear to be spurious, but initialize them to 0 to avoid the warning. | |||||
* | Handle Id_Sextend (#59) | T. Meissner | 2019-10-09 | 1 | -0/+8 | |
| | ||||||
* | Handle Id_Asr (#55) | T. Meissner | 2019-10-06 | 1 | -0/+4 | |
| | ||||||
* | add shift functions (#54) | Pepijn de Vos | 2019-10-06 | 1 | -0/+8 | |
| | ||||||
* | Handle Const_X & Const_Z (#49) | T. Meissner | 2019-10-05 | 1 | -0/+12 | |
| | ||||||
* | handle Const_Log | Tristan Gingold | 2019-10-02 | 1 | -25/+34 | |
| | ||||||
* | Handle Const_Bit. | Tristan Gingold | 2019-10-02 | 1 | -0/+14 | |
| | ||||||
* | Handle covers (#43) | T. Meissner | 2019-09-20 | 1 | -0/+4 | |
| | ||||||
* | Remove Id_Insert (unused). | Tristan Gingold | 2019-09-09 | 1 | -17/+0 | |
| | ||||||
* | Fix incomplete handling of Concatn | Tristan Gingold | 2019-09-07 | 1 | -2/+3 | |
| | ||||||
* | Run testsuite in Travis CI with docker images (#31) | 1138-4EB | 2019-08-16 | 2 | -0/+582 | |
* makefile: use '--build' shortcut to build ghdl.so * move: rename subdir 'ghdl' to 'src' * travis: add travis config file, build script and utils script * testsuite: do not call ghdl explicitly * readme: update |