mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Regenerate
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1b76c759ac
commit
bd41a064ed
File diff suppressed because it is too large
Load Diff
@ -344,7 +344,7 @@
|
|||||||
|
|
||||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||||
typedef union YYSTYPE
|
typedef union YYSTYPE
|
||||||
#line 952 "/Volumes/MacOS9/gcc/llvm/lib/AsmParser/llvmAsmParser.y"
|
#line 952 "/Volumes/Nanpura/mrv/llvm/lib/AsmParser/llvmAsmParser.y"
|
||||||
{
|
{
|
||||||
llvm::Module *ModuleVal;
|
llvm::Module *ModuleVal;
|
||||||
llvm::Function *FunctionVal;
|
llvm::Function *FunctionVal;
|
||||||
|
@ -3168,9 +3168,8 @@ MemoryInst : MALLOC Types OptCAlign {
|
|||||||
$$ = new StoreInst($3, tmpVal, $1, $7);
|
$$ = new StoreInst($3, tmpVal, $1, $7);
|
||||||
delete $5;
|
delete $5;
|
||||||
}
|
}
|
||||||
| GETRESULT Types LocalName ',' EUINT64VAL {
|
| GETRESULT Types SymbolicValueRef ',' EUINT64VAL {
|
||||||
ValID TmpVID = ValID::createLocalName(*$3);
|
Value *TmpVal = getVal($2->get(), $3);
|
||||||
Value *TmpVal = getVal($2->get(), TmpVID);
|
|
||||||
if (!GetResultInst::isValidOperands(TmpVal, $5))
|
if (!GetResultInst::isValidOperands(TmpVal, $5))
|
||||||
GEN_ERROR("Invalid getresult operands");
|
GEN_ERROR("Invalid getresult operands");
|
||||||
$$ = new GetResultInst(TmpVal, $5);
|
$$ = new GetResultInst(TmpVal, $5);
|
||||||
|
Loading…
Reference in New Issue
Block a user