Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
d1c9f4fe
Commit
d1c9f4fe
authored
Nov 13, 2015
by
Alex Bakhturin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build error caused by missing 'override's.
parent
a48c123d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/asm_writing/rewriter.h
src/asm_writing/rewriter.h
+1
-1
src/codegen/compvars.cpp
src/codegen/compvars.cpp
+2
-2
No files found.
src/asm_writing/rewriter.h
View file @
d1c9f4fe
...
...
@@ -596,7 +596,7 @@ public:
void
addDependenceOn
(
ICInvalidator
&
);
void
gc_visit
(
gc
::
GCVisitor
*
visitor
);
void
gc_visit
(
gc
::
GCVisitor
*
visitor
)
override
;
static
Rewriter
*
createRewriter
(
void
*
rtn_addr
,
int
num_args
,
const
char
*
debug_name
);
...
...
src/codegen/compvars.cpp
View file @
d1c9f4fe
...
...
@@ -1619,7 +1619,7 @@ private:
public:
PhonyUnboxedType
(
llvm
::
Type
*
t
,
CompilerType
*
usable_type
)
:
t
(
t
),
usable_type
(
usable_type
)
{}
std
::
string
debugName
()
{
return
"phony("
+
ConcreteCompilerType
::
debugName
()
+
")"
;
}
std
::
string
debugName
()
override
{
return
"phony("
+
ConcreteCompilerType
::
debugName
()
+
")"
;
}
CompilerType
*
getUsableType
()
override
{
return
usable_type
;
}
...
...
@@ -2778,7 +2778,7 @@ public:
void
drop
(
IREmitter
&
emitter
,
VAR
*
var
)
override
{}
void
grab
(
IREmitter
&
emitter
,
VAR
*
var
)
override
{}
void
assertMatches
(
UnboxedSlice
slice
)
{}
void
assertMatches
(
UnboxedSlice
slice
)
override
{}
int
numFrameArgs
()
override
{
RELEASE_ASSERT
(
0
,
"unboxed slice should never get serialized"
);
}
...
...
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