mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
Disallow packed types in icmp/fcmp instructions. The code generator is
not prepared to handle them yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32861 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
70d8d121ea
commit
539b471a33
@ -2549,6 +2549,8 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
|
|||||||
| ICMP IPredicates Types ValueRef ',' ValueRef {
|
| ICMP IPredicates Types ValueRef ',' ValueRef {
|
||||||
if (!UpRefs.empty())
|
if (!UpRefs.empty())
|
||||||
GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
|
GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
|
||||||
|
if (isa<PackedType>((*$3).get()))
|
||||||
|
GEN_ERROR("Packed types not supported by icmp instruction");
|
||||||
Value* tmpVal1 = getVal(*$3, $4);
|
Value* tmpVal1 = getVal(*$3, $4);
|
||||||
CHECK_FOR_ERROR
|
CHECK_FOR_ERROR
|
||||||
Value* tmpVal2 = getVal(*$3, $6);
|
Value* tmpVal2 = getVal(*$3, $6);
|
||||||
@ -2560,6 +2562,8 @@ InstVal : ArithmeticOps Types ValueRef ',' ValueRef {
|
|||||||
| FCMP FPredicates Types ValueRef ',' ValueRef {
|
| FCMP FPredicates Types ValueRef ',' ValueRef {
|
||||||
if (!UpRefs.empty())
|
if (!UpRefs.empty())
|
||||||
GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
|
GEN_ERROR("Invalid upreference in type: " + (*$3)->getDescription());
|
||||||
|
if (isa<PackedType>((*$3).get()))
|
||||||
|
GEN_ERROR("Packed types not supported by fcmp instruction");
|
||||||
Value* tmpVal1 = getVal(*$3, $4);
|
Value* tmpVal1 = getVal(*$3, $4);
|
||||||
CHECK_FOR_ERROR
|
CHECK_FOR_ERROR
|
||||||
Value* tmpVal2 = getVal(*$3, $6);
|
Value* tmpVal2 = getVal(*$3, $6);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user