mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 20:29:30 +00:00
Examine the type code in the setcc class of instructions and if it
is a PackedType, throw an error. Temporary solution. Patch contributed by Brad Jones. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15963 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c3306120cc
commit
57b6eec5e6
@ -1934,6 +1934,10 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
|
|||||||
delete $2;
|
delete $2;
|
||||||
}
|
}
|
||||||
| SetCondOps Types ValueRef ',' ValueRef {
|
| SetCondOps Types ValueRef ',' ValueRef {
|
||||||
|
if(isa<PackedType>((*$2).get())) {
|
||||||
|
ThrowException(
|
||||||
|
"PackedTypes currently not supported in setcc instructions!");
|
||||||
|
}
|
||||||
$$ = new SetCondInst($1, getVal(*$2, $3), getVal(*$2, $5));
|
$$ = new SetCondInst($1, getVal(*$2, $3), getVal(*$2, $5));
|
||||||
if ($$ == 0)
|
if ($$ == 0)
|
||||||
ThrowException("binary operator returned null!");
|
ThrowException("binary operator returned null!");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user