Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-and-itasks
clean-libraries
Commits
47d5c3bd
Commit
47d5c3bd
authored
Feb 19, 2019
by
johnvg@science.ru.nl
Browse files
in module symbols_in_program compare with dINT instead of INT on 64 bit linux
parent
cd73212a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Libraries/graph_copy/symbols_in_program.icl
View file @
47d5c3bd
...
@@ -46,7 +46,9 @@ exported_clean_symbol i s
...
@@ -46,7 +46,9 @@ exported_clean_symbol i s
|
s
.[
i
+2
]==
'T'
&&
s
.[
i
+3
]==
'u'
&&
s
.[
i
+4
]==
'p'
&&
s
.[
i
+5
]==
'l'
&&
s
.[
i
+6
]==
'e'
&&
s
.[
i
+7
]==
'\0'
|
s
.[
i
+2
]==
'T'
&&
s
.[
i
+3
]==
'u'
&&
s
.[
i
+4
]==
'p'
&&
s
.[
i
+5
]==
'l'
&&
s
.[
i
+6
]==
'e'
&&
s
.[
i
+7
]==
'\0'
=
True
;
=
True
;
=
False
;
=
False
;
|
s
.[
i
]==
'I'
&&
s
.[
i
+1
]==
'N'
&&
s
.[
i
+2
]==
'T'
&&
s
.[
i
+3
]==
'\0'
|
IF_INT_64_OR_32
(
s
.[
i
]==
'd'
&&
s
.[
i
+1
]==
'I'
&&
s
.[
i
+2
]==
'N'
&&
s
.[
i
+3
]==
'T'
&&
s
.[
i
+4
]==
'\0'
)
(
s
.[
i
]==
'I'
&&
s
.[
i
+1
]==
'N'
&&
s
.[
i
+2
]==
'T'
&&
s
.[
i
+3
]==
'\0'
)
=
True
;
=
True
;
|
s
.[
i
]==
'C'
&&
s
.[
i
+1
]==
'H'
&&
s
.[
i
+2
]==
'A'
&&
s
.[
i
+3
]==
'R'
&&
s
.[
i
+4
]==
'\0'
|
s
.[
i
]==
'C'
&&
s
.[
i
+1
]==
'H'
&&
s
.[
i
+2
]==
'A'
&&
s
.[
i
+3
]==
'R'
&&
s
.[
i
+4
]==
'\0'
=
True
;
=
True
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment