mirror of
https://github.com/corda/corda.git
synced 2025-01-09 06:23:04 +00:00
remove unused functions from powerpc.cpp
This commit is contained in:
parent
bcf7c0639c
commit
a4914daae4
@ -1677,62 +1677,6 @@ jumpC(Context* c, unsigned size UNUSED, Assembler::Constant* target)
|
|||||||
emit(c, b(0));
|
emit(c, b(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
jumpIfEqualC(Context* c, unsigned size UNUSED, Assembler::Constant* target)
|
|
||||||
{
|
|
||||||
assert(c, size == BytesPerWord);
|
|
||||||
|
|
||||||
appendOffsetTask(c, target->value, offset(c), true);
|
|
||||||
emit(c, beq(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
jumpIfNotEqualC(Context* c, unsigned size UNUSED, Assembler::Constant* target)
|
|
||||||
{
|
|
||||||
assert(c, size == BytesPerWord);
|
|
||||||
|
|
||||||
appendOffsetTask(c, target->value, offset(c), true);
|
|
||||||
emit(c, bne(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
jumpIfGreaterC(Context* c, unsigned size UNUSED, Assembler::Constant* target)
|
|
||||||
{
|
|
||||||
assert(c, size == BytesPerWord);
|
|
||||||
|
|
||||||
appendOffsetTask(c, target->value, offset(c), true);
|
|
||||||
emit(c, bgt(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
jumpIfGreaterOrEqualC(Context* c, unsigned size UNUSED,
|
|
||||||
Assembler::Constant* target)
|
|
||||||
{
|
|
||||||
assert(c, size == BytesPerWord);
|
|
||||||
|
|
||||||
appendOffsetTask(c, target->value, offset(c), true);
|
|
||||||
emit(c, bge(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
jumpIfLessC(Context* c, unsigned size UNUSED, Assembler::Constant* target)
|
|
||||||
{
|
|
||||||
assert(c, size == BytesPerWord);
|
|
||||||
|
|
||||||
appendOffsetTask(c, target->value, offset(c), true);
|
|
||||||
emit(c, blt(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
jumpIfLessOrEqualC(Context* c, unsigned size UNUSED,
|
|
||||||
Assembler::Constant* target)
|
|
||||||
{
|
|
||||||
assert(c, size == BytesPerWord);
|
|
||||||
|
|
||||||
appendOffsetTask(c, target->value, offset(c), true);
|
|
||||||
emit(c, ble(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
return_(Context* c)
|
return_(Context* c)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user