Skip to content

Commit bce39e1

Browse files
committed
Merge branch 'release-2.6.2'
2 parents 012a199 + da526a5 commit bce39e1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = smack
8-
PROJECT_NUMBER = 2.6.1
8+
PROJECT_NUMBER = 2.6.2
99
PROJECT_BRIEF = "A bounded software verifier."
1010
PROJECT_LOGO =
1111
OUTPUT_DIRECTORY = docs

lib/smack/RewriteBitwiseOps.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ bool RewriteBitwiseOps::runOnModule(Module &m) {
104104
Function *co;
105105
if (bitWidth == 64) {
106106
co = m.getFunction("__SMACK_and64");
107+
} else if (bitWidth == 32) {
108+
co = m.getFunction("__SMACK_and32");
107109
} else if (bitWidth == 16) {
108110
co = m.getFunction("__SMACK_and16");
109111
} else if (bitWidth == 8) {
110112
co = m.getFunction("__SMACK_and8");
111-
} else if (bitWidth == 1) {
112-
continue;
113113
} else {
114-
co = m.getFunction("__SMACK_and32");
114+
continue;
115115
}
116116
assert(co != NULL && "Function __SMACK_and should be present.");
117117
std::vector<Value *> args;
@@ -133,14 +133,14 @@ bool RewriteBitwiseOps::runOnModule(Module &m) {
133133
Function *co;
134134
if (bitWidth == 64) {
135135
co = m.getFunction("__SMACK_or64");
136+
} else if (bitWidth == 32) {
137+
co = m.getFunction("__SMACK_or32");
136138
} else if (bitWidth == 16) {
137139
co = m.getFunction("__SMACK_or16");
138140
} else if (bitWidth == 8) {
139141
co = m.getFunction("__SMACK_or8");
140-
} else if (bitWidth == 1) {
141-
continue;
142142
} else {
143-
co = m.getFunction("__SMACK_or32");
143+
continue;
144144
}
145145
assert(co != NULL && "Function __SMACK_or should be present.");
146146
std::vector<Value *> args;

share/smack/reach.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from smackgen import *
1212
from smackverify import *
1313

14-
VERSION = '2.6.1'
14+
VERSION = '2.6.2'
1515

1616

1717
def reachParser():

share/smack/top.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from .frontend import link_bc_files, frontends, languages, extra_libs
1414
from .errtrace import error_trace, smackdOutput
1515

16-
VERSION = '2.6.1'
16+
VERSION = '2.6.2'
1717

1818

1919
class VResult(Flag):

0 commit comments

Comments
 (0)