File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,16 @@ before_install:
3131 ../configure --tooldir=$TOOLDIR;
3232 ci/toolchain_install.sh --all;
3333 echo "v0.3" > "$TOOLDIR/version.txt";
34+ else
35+ echo "using existing tooldir build";
3436 fi
3537 - if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v0.2" ]; then
3638 cd $TRAVIS_BUILD_DIR;
3739 make -C third_party > /dev/null;
3840 echo "v0.2" > "third_party/version.txt";
3941 cp -rf third_party $HOME;
4042 else
43+ echo "using existing third_party build";
4144 cp -rf $HOME/third_party $TRAVIS_BUILD_DIR;
4245 fi
4346
@@ -50,6 +53,7 @@ install:
5053 echo "$TRAVIS_COMMIT" > version.txt;
5154 cp -rf $TRAVIS_BUILD_DIR/build$XLEN $HOME;
5255 else
56+ echo "using existing build for commit $TRAVIS_COMMIT";
5357 cp -rf $HOME/build$XLEN $TRAVIS_BUILD_DIR;
5458 fi
5559
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Emulator::warp_t::warp_t(const Arch& arch)
5050void Emulator::warp_t::clear (uint64_t startup_addr) {
5151 this ->PC = startup_addr;
5252 this ->tmask .reset ();
53- this ->uui_gen . reset () ;
53+ this ->uuid = 0 ;
5454 this ->fcsr = 0 ;
5555
5656 for (auto & reg_file : this ->ireg_file ) {
You can’t perform that action at this time.
0 commit comments