Skip to content

Commit

Permalink
Merge branch 'release-2.6.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
zvonimir committed Dec 2, 2020
2 parents 012a199 + da526a5 commit bce39e1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = smack
PROJECT_NUMBER = 2.6.1
PROJECT_NUMBER = 2.6.2
PROJECT_BRIEF = "A bounded software verifier."
PROJECT_LOGO =
OUTPUT_DIRECTORY = docs
Expand Down
12 changes: 6 additions & 6 deletions lib/smack/RewriteBitwiseOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ bool RewriteBitwiseOps::runOnModule(Module &m) {
Function *co;
if (bitWidth == 64) {
co = m.getFunction("__SMACK_and64");
} else if (bitWidth == 32) {
co = m.getFunction("__SMACK_and32");
} else if (bitWidth == 16) {
co = m.getFunction("__SMACK_and16");
} else if (bitWidth == 8) {
co = m.getFunction("__SMACK_and8");
} else if (bitWidth == 1) {
continue;
} else {
co = m.getFunction("__SMACK_and32");
continue;
}
assert(co != NULL && "Function __SMACK_and should be present.");
std::vector<Value *> args;
Expand All @@ -133,14 +133,14 @@ bool RewriteBitwiseOps::runOnModule(Module &m) {
Function *co;
if (bitWidth == 64) {
co = m.getFunction("__SMACK_or64");
} else if (bitWidth == 32) {
co = m.getFunction("__SMACK_or32");
} else if (bitWidth == 16) {
co = m.getFunction("__SMACK_or16");
} else if (bitWidth == 8) {
co = m.getFunction("__SMACK_or8");
} else if (bitWidth == 1) {
continue;
} else {
co = m.getFunction("__SMACK_or32");
continue;
}
assert(co != NULL && "Function __SMACK_or should be present.");
std::vector<Value *> args;
Expand Down
2 changes: 1 addition & 1 deletion share/smack/reach.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from smackgen import *
from smackverify import *

VERSION = '2.6.1'
VERSION = '2.6.2'


def reachParser():
Expand Down
2 changes: 1 addition & 1 deletion share/smack/top.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .frontend import link_bc_files, frontends, languages, extra_libs
from .errtrace import error_trace, smackdOutput

VERSION = '2.6.1'
VERSION = '2.6.2'


class VResult(Flag):
Expand Down

0 comments on commit bce39e1

Please sign in to comment.