mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 02:25:19 +00:00
Regenerate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32173 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -325,7 +325,7 @@
|
||||
|
||||
|
||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
||||
#line 967 "/proj/llvm/llvm-4/lib/AsmParser/llvmAsmParser.y"
|
||||
#line 967 "/proj/llvm/llvm-1/lib/AsmParser/llvmAsmParser.y"
|
||||
typedef union YYSTYPE {
|
||||
llvm::Module *ModuleVal;
|
||||
llvm::Function *FunctionVal;
|
||||
|
@@ -1706,15 +1706,15 @@ ConstExpr: CastOps '(' ConstVal TO Types ')' {
|
||||
$$ = ConstantExpr::get($1, $3, $5);
|
||||
CHECK_FOR_ERROR
|
||||
}
|
||||
| ICMP '(' IPredicates ',' ConstVal ',' ConstVal ')' {
|
||||
if ($5->getType() != $7->getType())
|
||||
| ICMP IPredicates '(' ConstVal ',' ConstVal ')' {
|
||||
if ($4->getType() != $6->getType())
|
||||
GEN_ERROR("icmp operand types must match!");
|
||||
$$ = ConstantExpr::getICmp($3, $5, $7);
|
||||
$$ = ConstantExpr::getICmp($2, $4, $6);
|
||||
}
|
||||
| FCMP '(' FPredicates ',' ConstVal ',' ConstVal ')' {
|
||||
if ($5->getType() != $7->getType())
|
||||
| FCMP FPredicates '(' ConstVal ',' ConstVal ')' {
|
||||
if ($4->getType() != $6->getType())
|
||||
GEN_ERROR("fcmp operand types must match!");
|
||||
$$ = ConstantExpr::getFCmp($3, $5, $7);
|
||||
$$ = ConstantExpr::getFCmp($2, $4, $6);
|
||||
}
|
||||
| ShiftOps '(' ConstVal ',' ConstVal ')' {
|
||||
if ($5->getType() != Type::UByteTy)
|
||||
|
Reference in New Issue
Block a user