Skip to content

Commit

Permalink
Fix errors after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeac committed Nov 7, 2018
1 parent dc3bc65 commit 4d9809b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 30 deletions.
50 changes: 22 additions & 28 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,44 @@
version: "Build {build}"


cache: c:\tools\vcpkg\installed\


skip_commits:
message: /\[[aA]ppveyor [sS]kip\]/


branches:
except:
- gh-pages


matrix:
fast_finish: true


pull_requests:
do_not_increment_build_number: true


clone_folder: C:\projects\boomerang
#
# This file is part of the Boomerang Decompiler.
#
# See the file "LICENSE.TERMS" for information on usage and
# redistribution of this file, and for a DISCLAIMER OF ALL
# WARRANTIES.
#

version: "Build {build}"

os:
- Visual Studio 2017


platform:
- x64


configuration:
- Debug
- Release

branches:
except:
- gh-pages

skip_commits:
message: /\[[aA]ppveyor [sS]kip\]/

clone_folder: C:\projects\boomerang

cache: c:\tools\vcpkg\installed\

build:
parallel: true
verbosity: quiet # MSBuild verbosity level (quiet|minimal|normal|detailed)



matrix:
fast_finish: true

pull_requests:
do_not_increment_build_number: true

init:
- cmd: cmake --version
- cmd: msbuild /version
Expand All @@ -66,3 +59,4 @@ artifacts:
- path: 'build\boomerang-*.exe'
name: Installer
type: File

5 changes: 3 additions & 2 deletions src/boomerang/frontend/pentium/CapstoneX86Decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ std::unique_ptr<RTL> CapstoneX86Decoder::createRTLForInstruction(Address pc,
CallStatement *call = new CallStatement;
// Set the destination
call->setDest(callDest);
rtl->push_back(call);
rtl->append(call);

if (callDest->isConst()) {
Function *destProc = m_prog->getOrCreateFunction(
Expand Down Expand Up @@ -372,8 +372,9 @@ std::unique_ptr<RTL> CapstoneX86Decoder::createRTLForInstruction(Address pc,
}

rtl->clear();
rtl->push_back(bas);
rtl->append(bas);
}

return rtl;
}

Expand Down

0 comments on commit 4d9809b

Please sign in to comment.