Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wasm-watermarker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nagayama15
wasm-watermarker
Commits
654dc609
Commit
654dc609
authored
Jul 07, 2019
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Suppress uninitialized warning
parent
cdd36cd9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
comparison.hpp
src/kyut/comparison.hpp
+2
-2
No files found.
src/kyut/comparison.hpp
View file @
654dc609
...
@@ -141,8 +141,8 @@ namespace wasm {
...
@@ -141,8 +141,8 @@ namespace wasm {
const
auto
&
l
=
*
lhs
.
cast
<
Load
>
();
const
auto
&
l
=
*
lhs
.
cast
<
Load
>
();
const
auto
&
r
=
*
rhs
.
cast
<
Load
>
();
const
auto
&
r
=
*
rhs
.
cast
<
Load
>
();
return
std
::
forward_as_tuple
(
l
.
type
,
l
.
bytes
,
l
.
signed_
,
l
.
offset
,
l
.
align
,
l
.
isAtomic
,
*
l
.
ptr
)
<
return
std
::
forward_as_tuple
(
l
.
type
,
l
.
bytes
,
l
.
offset
,
l
.
align
,
l
.
isAtomic
,
*
l
.
ptr
)
<
std
::
forward_as_tuple
(
r
.
type
,
r
.
bytes
,
r
.
signed_
,
r
.
offset
,
r
.
align
,
r
.
isAtomic
,
*
r
.
ptr
);
std
::
forward_as_tuple
(
r
.
type
,
r
.
bytes
,
r
.
offset
,
r
.
align
,
r
.
isAtomic
,
*
r
.
ptr
);
}
}
case
Expression
:
:
Id
::
StoreId
:
{
case
Expression
:
:
Id
::
StoreId
:
{
...
...
Write
Preview
Markdown
is supported
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