mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 03:28:35 +00:00
Regenerate.
llvm-svn: 44859
This commit is contained in:
parent
7368604860
commit
71a996a387
File diff suppressed because it is too large
Load Diff
@ -1,347 +1,4 @@
|
||||
/* A Bison parser, made by GNU Bison 2.3. */
|
||||
|
||||
/* Skeleton interface for Bison's Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA. */
|
||||
|
||||
/* As a special exception, you may create a larger work that contains
|
||||
part or all of the Bison parser skeleton and distribute that work
|
||||
under terms of your choice, so long as that work isn't itself a
|
||||
parser generator using the skeleton or a modified version thereof
|
||||
as a parser skeleton. Alternatively, if you modify or redistribute
|
||||
the parser skeleton itself, you may (at your option) remove this
|
||||
special exception, which will cause the skeleton and the resulting
|
||||
Bison output files to be licensed under the GNU General Public
|
||||
License without this special exception.
|
||||
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||||
know about them. */
|
||||
enum yytokentype {
|
||||
ESINT64VAL = 258,
|
||||
EUINT64VAL = 259,
|
||||
ESAPINTVAL = 260,
|
||||
EUAPINTVAL = 261,
|
||||
LOCALVAL_ID = 262,
|
||||
GLOBALVAL_ID = 263,
|
||||
FPVAL = 264,
|
||||
VOID = 265,
|
||||
INTTYPE = 266,
|
||||
FLOAT = 267,
|
||||
DOUBLE = 268,
|
||||
X86_FP80 = 269,
|
||||
FP128 = 270,
|
||||
PPC_FP128 = 271,
|
||||
LABEL = 272,
|
||||
TYPE = 273,
|
||||
LOCALVAR = 274,
|
||||
GLOBALVAR = 275,
|
||||
LABELSTR = 276,
|
||||
STRINGCONSTANT = 277,
|
||||
ATSTRINGCONSTANT = 278,
|
||||
PCTSTRINGCONSTANT = 279,
|
||||
ZEROINITIALIZER = 280,
|
||||
TRUETOK = 281,
|
||||
FALSETOK = 282,
|
||||
BEGINTOK = 283,
|
||||
ENDTOK = 284,
|
||||
DECLARE = 285,
|
||||
DEFINE = 286,
|
||||
GLOBAL = 287,
|
||||
CONSTANT = 288,
|
||||
SECTION = 289,
|
||||
ALIAS = 290,
|
||||
VOLATILE = 291,
|
||||
THREAD_LOCAL = 292,
|
||||
TO = 293,
|
||||
DOTDOTDOT = 294,
|
||||
NULL_TOK = 295,
|
||||
UNDEF = 296,
|
||||
INTERNAL = 297,
|
||||
LINKONCE = 298,
|
||||
WEAK = 299,
|
||||
APPENDING = 300,
|
||||
DLLIMPORT = 301,
|
||||
DLLEXPORT = 302,
|
||||
EXTERN_WEAK = 303,
|
||||
OPAQUE = 304,
|
||||
EXTERNAL = 305,
|
||||
TARGET = 306,
|
||||
TRIPLE = 307,
|
||||
ALIGN = 308,
|
||||
DEPLIBS = 309,
|
||||
CALL = 310,
|
||||
TAIL = 311,
|
||||
ASM_TOK = 312,
|
||||
MODULE = 313,
|
||||
SIDEEFFECT = 314,
|
||||
CC_TOK = 315,
|
||||
CCC_TOK = 316,
|
||||
FASTCC_TOK = 317,
|
||||
COLDCC_TOK = 318,
|
||||
X86_STDCALLCC_TOK = 319,
|
||||
X86_FASTCALLCC_TOK = 320,
|
||||
DATALAYOUT = 321,
|
||||
RET = 322,
|
||||
BR = 323,
|
||||
SWITCH = 324,
|
||||
INVOKE = 325,
|
||||
UNWIND = 326,
|
||||
UNREACHABLE = 327,
|
||||
ADD = 328,
|
||||
SUB = 329,
|
||||
MUL = 330,
|
||||
UDIV = 331,
|
||||
SDIV = 332,
|
||||
FDIV = 333,
|
||||
UREM = 334,
|
||||
SREM = 335,
|
||||
FREM = 336,
|
||||
AND = 337,
|
||||
OR = 338,
|
||||
XOR = 339,
|
||||
SHL = 340,
|
||||
LSHR = 341,
|
||||
ASHR = 342,
|
||||
ICMP = 343,
|
||||
FCMP = 344,
|
||||
EQ = 345,
|
||||
NE = 346,
|
||||
SLT = 347,
|
||||
SGT = 348,
|
||||
SLE = 349,
|
||||
SGE = 350,
|
||||
ULT = 351,
|
||||
UGT = 352,
|
||||
ULE = 353,
|
||||
UGE = 354,
|
||||
OEQ = 355,
|
||||
ONE = 356,
|
||||
OLT = 357,
|
||||
OGT = 358,
|
||||
OLE = 359,
|
||||
OGE = 360,
|
||||
ORD = 361,
|
||||
UNO = 362,
|
||||
UEQ = 363,
|
||||
UNE = 364,
|
||||
MALLOC = 365,
|
||||
ALLOCA = 366,
|
||||
FREE = 367,
|
||||
LOAD = 368,
|
||||
STORE = 369,
|
||||
GETELEMENTPTR = 370,
|
||||
TRUNC = 371,
|
||||
ZEXT = 372,
|
||||
SEXT = 373,
|
||||
FPTRUNC = 374,
|
||||
FPEXT = 375,
|
||||
BITCAST = 376,
|
||||
UITOFP = 377,
|
||||
SITOFP = 378,
|
||||
FPTOUI = 379,
|
||||
FPTOSI = 380,
|
||||
INTTOPTR = 381,
|
||||
PTRTOINT = 382,
|
||||
PHI_TOK = 383,
|
||||
SELECT = 384,
|
||||
VAARG = 385,
|
||||
EXTRACTELEMENT = 386,
|
||||
INSERTELEMENT = 387,
|
||||
SHUFFLEVECTOR = 388,
|
||||
SIGNEXT = 389,
|
||||
ZEROEXT = 390,
|
||||
NORETURN = 391,
|
||||
INREG = 392,
|
||||
SRET = 393,
|
||||
NOUNWIND = 394,
|
||||
NOALIAS = 395,
|
||||
BYVAL = 396,
|
||||
NEST = 397,
|
||||
READNONE = 398,
|
||||
READONLY = 399,
|
||||
GC = 400,
|
||||
DEFAULT = 401,
|
||||
HIDDEN = 402,
|
||||
PROTECTED = 403
|
||||
};
|
||||
#endif
|
||||
/* Tokens. */
|
||||
#define ESINT64VAL 258
|
||||
#define EUINT64VAL 259
|
||||
#define ESAPINTVAL 260
|
||||
#define EUAPINTVAL 261
|
||||
#define LOCALVAL_ID 262
|
||||
#define GLOBALVAL_ID 263
|
||||
#define FPVAL 264
|
||||
#define VOID 265
|
||||
#define INTTYPE 266
|
||||
#define FLOAT 267
|
||||
#define DOUBLE 268
|
||||
#define X86_FP80 269
|
||||
#define FP128 270
|
||||
#define PPC_FP128 271
|
||||
#define LABEL 272
|
||||
#define TYPE 273
|
||||
#define LOCALVAR 274
|
||||
#define GLOBALVAR 275
|
||||
#define LABELSTR 276
|
||||
#define STRINGCONSTANT 277
|
||||
#define ATSTRINGCONSTANT 278
|
||||
#define PCTSTRINGCONSTANT 279
|
||||
#define ZEROINITIALIZER 280
|
||||
#define TRUETOK 281
|
||||
#define FALSETOK 282
|
||||
#define BEGINTOK 283
|
||||
#define ENDTOK 284
|
||||
#define DECLARE 285
|
||||
#define DEFINE 286
|
||||
#define GLOBAL 287
|
||||
#define CONSTANT 288
|
||||
#define SECTION 289
|
||||
#define ALIAS 290
|
||||
#define VOLATILE 291
|
||||
#define THREAD_LOCAL 292
|
||||
#define TO 293
|
||||
#define DOTDOTDOT 294
|
||||
#define NULL_TOK 295
|
||||
#define UNDEF 296
|
||||
#define INTERNAL 297
|
||||
#define LINKONCE 298
|
||||
#define WEAK 299
|
||||
#define APPENDING 300
|
||||
#define DLLIMPORT 301
|
||||
#define DLLEXPORT 302
|
||||
#define EXTERN_WEAK 303
|
||||
#define OPAQUE 304
|
||||
#define EXTERNAL 305
|
||||
#define TARGET 306
|
||||
#define TRIPLE 307
|
||||
#define ALIGN 308
|
||||
#define DEPLIBS 309
|
||||
#define CALL 310
|
||||
#define TAIL 311
|
||||
#define ASM_TOK 312
|
||||
#define MODULE 313
|
||||
#define SIDEEFFECT 314
|
||||
#define CC_TOK 315
|
||||
#define CCC_TOK 316
|
||||
#define FASTCC_TOK 317
|
||||
#define COLDCC_TOK 318
|
||||
#define X86_STDCALLCC_TOK 319
|
||||
#define X86_FASTCALLCC_TOK 320
|
||||
#define DATALAYOUT 321
|
||||
#define RET 322
|
||||
#define BR 323
|
||||
#define SWITCH 324
|
||||
#define INVOKE 325
|
||||
#define UNWIND 326
|
||||
#define UNREACHABLE 327
|
||||
#define ADD 328
|
||||
#define SUB 329
|
||||
#define MUL 330
|
||||
#define UDIV 331
|
||||
#define SDIV 332
|
||||
#define FDIV 333
|
||||
#define UREM 334
|
||||
#define SREM 335
|
||||
#define FREM 336
|
||||
#define AND 337
|
||||
#define OR 338
|
||||
#define XOR 339
|
||||
#define SHL 340
|
||||
#define LSHR 341
|
||||
#define ASHR 342
|
||||
#define ICMP 343
|
||||
#define FCMP 344
|
||||
#define EQ 345
|
||||
#define NE 346
|
||||
#define SLT 347
|
||||
#define SGT 348
|
||||
#define SLE 349
|
||||
#define SGE 350
|
||||
#define ULT 351
|
||||
#define UGT 352
|
||||
#define ULE 353
|
||||
#define UGE 354
|
||||
#define OEQ 355
|
||||
#define ONE 356
|
||||
#define OLT 357
|
||||
#define OGT 358
|
||||
#define OLE 359
|
||||
#define OGE 360
|
||||
#define ORD 361
|
||||
#define UNO 362
|
||||
#define UEQ 363
|
||||
#define UNE 364
|
||||
#define MALLOC 365
|
||||
#define ALLOCA 366
|
||||
#define FREE 367
|
||||
#define LOAD 368
|
||||
#define STORE 369
|
||||
#define GETELEMENTPTR 370
|
||||
#define TRUNC 371
|
||||
#define ZEXT 372
|
||||
#define SEXT 373
|
||||
#define FPTRUNC 374
|
||||
#define FPEXT 375
|
||||
#define BITCAST 376
|
||||
#define UITOFP 377
|
||||
#define SITOFP 378
|
||||
#define FPTOUI 379
|
||||
#define FPTOSI 380
|
||||
#define INTTOPTR 381
|
||||
#define PTRTOINT 382
|
||||
#define PHI_TOK 383
|
||||
#define SELECT 384
|
||||
#define VAARG 385
|
||||
#define EXTRACTELEMENT 386
|
||||
#define INSERTELEMENT 387
|
||||
#define SHUFFLEVECTOR 388
|
||||
#define SIGNEXT 389
|
||||
#define ZEROEXT 390
|
||||
#define NORETURN 391
|
||||
#define INREG 392
|
||||
#define SRET 393
|
||||
#define NOUNWIND 394
|
||||
#define NOALIAS 395
|
||||
#define BYVAL 396
|
||||
#define NEST 397
|
||||
#define READNONE 398
|
||||
#define READONLY 399
|
||||
#define GC 400
|
||||
#define DEFAULT 401
|
||||
#define HIDDEN 402
|
||||
#define PROTECTED 403
|
||||
|
||||
|
||||
|
||||
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef union YYSTYPE
|
||||
#line 945 "/Users/malichus/Source/llvm/src/llvm/lib/AsmParser/llvmAsmParser.y"
|
||||
{
|
||||
typedef union {
|
||||
llvm::Module *ModuleVal;
|
||||
llvm::Function *FunctionVal;
|
||||
llvm::BasicBlock *BasicBlockVal;
|
||||
@ -386,14 +43,154 @@ typedef union YYSTYPE
|
||||
llvm::Instruction::OtherOps OtherOpVal;
|
||||
llvm::ICmpInst::Predicate IPredicate;
|
||||
llvm::FCmpInst::Predicate FPredicate;
|
||||
}
|
||||
/* Line 1529 of yacc.c. */
|
||||
#line 392 "llvmAsmParser.tab.h"
|
||||
YYSTYPE;
|
||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
#endif
|
||||
} YYSTYPE;
|
||||
#define ESINT64VAL 257
|
||||
#define EUINT64VAL 258
|
||||
#define ESAPINTVAL 259
|
||||
#define EUAPINTVAL 260
|
||||
#define LOCALVAL_ID 261
|
||||
#define GLOBALVAL_ID 262
|
||||
#define FPVAL 263
|
||||
#define VOID 264
|
||||
#define INTTYPE 265
|
||||
#define FLOAT 266
|
||||
#define DOUBLE 267
|
||||
#define X86_FP80 268
|
||||
#define FP128 269
|
||||
#define PPC_FP128 270
|
||||
#define LABEL 271
|
||||
#define TYPE 272
|
||||
#define LOCALVAR 273
|
||||
#define GLOBALVAR 274
|
||||
#define LABELSTR 275
|
||||
#define STRINGCONSTANT 276
|
||||
#define ATSTRINGCONSTANT 277
|
||||
#define PCTSTRINGCONSTANT 278
|
||||
#define ZEROINITIALIZER 279
|
||||
#define TRUETOK 280
|
||||
#define FALSETOK 281
|
||||
#define BEGINTOK 282
|
||||
#define ENDTOK 283
|
||||
#define DECLARE 284
|
||||
#define DEFINE 285
|
||||
#define GLOBAL 286
|
||||
#define CONSTANT 287
|
||||
#define SECTION 288
|
||||
#define ALIAS 289
|
||||
#define VOLATILE 290
|
||||
#define THREAD_LOCAL 291
|
||||
#define TO 292
|
||||
#define DOTDOTDOT 293
|
||||
#define NULL_TOK 294
|
||||
#define UNDEF 295
|
||||
#define INTERNAL 296
|
||||
#define LINKONCE 297
|
||||
#define WEAK 298
|
||||
#define APPENDING 299
|
||||
#define DLLIMPORT 300
|
||||
#define DLLEXPORT 301
|
||||
#define EXTERN_WEAK 302
|
||||
#define OPAQUE 303
|
||||
#define EXTERNAL 304
|
||||
#define TARGET 305
|
||||
#define TRIPLE 306
|
||||
#define ALIGN 307
|
||||
#define ADDRSPACE 308
|
||||
#define DEPLIBS 309
|
||||
#define CALL 310
|
||||
#define TAIL 311
|
||||
#define ASM_TOK 312
|
||||
#define MODULE 313
|
||||
#define SIDEEFFECT 314
|
||||
#define CC_TOK 315
|
||||
#define CCC_TOK 316
|
||||
#define FASTCC_TOK 317
|
||||
#define COLDCC_TOK 318
|
||||
#define X86_STDCALLCC_TOK 319
|
||||
#define X86_FASTCALLCC_TOK 320
|
||||
#define DATALAYOUT 321
|
||||
#define RET 322
|
||||
#define BR 323
|
||||
#define SWITCH 324
|
||||
#define INVOKE 325
|
||||
#define UNWIND 326
|
||||
#define UNREACHABLE 327
|
||||
#define ADD 328
|
||||
#define SUB 329
|
||||
#define MUL 330
|
||||
#define UDIV 331
|
||||
#define SDIV 332
|
||||
#define FDIV 333
|
||||
#define UREM 334
|
||||
#define SREM 335
|
||||
#define FREM 336
|
||||
#define AND 337
|
||||
#define OR 338
|
||||
#define XOR 339
|
||||
#define SHL 340
|
||||
#define LSHR 341
|
||||
#define ASHR 342
|
||||
#define ICMP 343
|
||||
#define FCMP 344
|
||||
#define EQ 345
|
||||
#define NE 346
|
||||
#define SLT 347
|
||||
#define SGT 348
|
||||
#define SLE 349
|
||||
#define SGE 350
|
||||
#define ULT 351
|
||||
#define UGT 352
|
||||
#define ULE 353
|
||||
#define UGE 354
|
||||
#define OEQ 355
|
||||
#define ONE 356
|
||||
#define OLT 357
|
||||
#define OGT 358
|
||||
#define OLE 359
|
||||
#define OGE 360
|
||||
#define ORD 361
|
||||
#define UNO 362
|
||||
#define UEQ 363
|
||||
#define UNE 364
|
||||
#define MALLOC 365
|
||||
#define ALLOCA 366
|
||||
#define FREE 367
|
||||
#define LOAD 368
|
||||
#define STORE 369
|
||||
#define GETELEMENTPTR 370
|
||||
#define TRUNC 371
|
||||
#define ZEXT 372
|
||||
#define SEXT 373
|
||||
#define FPTRUNC 374
|
||||
#define FPEXT 375
|
||||
#define BITCAST 376
|
||||
#define UITOFP 377
|
||||
#define SITOFP 378
|
||||
#define FPTOUI 379
|
||||
#define FPTOSI 380
|
||||
#define INTTOPTR 381
|
||||
#define PTRTOINT 382
|
||||
#define PHI_TOK 383
|
||||
#define SELECT 384
|
||||
#define VAARG 385
|
||||
#define EXTRACTELEMENT 386
|
||||
#define INSERTELEMENT 387
|
||||
#define SHUFFLEVECTOR 388
|
||||
#define SIGNEXT 389
|
||||
#define ZEROEXT 390
|
||||
#define NORETURN 391
|
||||
#define INREG 392
|
||||
#define SRET 393
|
||||
#define NOUNWIND 394
|
||||
#define NOALIAS 395
|
||||
#define BYVAL 396
|
||||
#define NEST 397
|
||||
#define READNONE 398
|
||||
#define READONLY 399
|
||||
#define GC 400
|
||||
#define DEFAULT 401
|
||||
#define HIDDEN 402
|
||||
#define PROTECTED 403
|
||||
|
||||
|
||||
extern YYSTYPE llvmAsmlval;
|
||||
|
||||
|
@ -491,7 +491,8 @@ static Value *getVal(const Type *Ty, const ValID &ID) {
|
||||
if (const FunctionType *FTy = dyn_cast<FunctionType>(ElTy))
|
||||
V = new Function(FTy, GlobalValue::ExternalLinkage);
|
||||
else
|
||||
V = new GlobalVariable(ElTy, false, GlobalValue::ExternalLinkage);
|
||||
V = new GlobalVariable(ElTy, false, GlobalValue::ExternalLinkage, 0, "",
|
||||
(Module*)0, false, PTy->getAddressSpace());
|
||||
break;
|
||||
}
|
||||
default:
|
||||
@ -722,13 +723,14 @@ ParseGlobalVariable(std::string *NameStr,
|
||||
GlobalValue::LinkageTypes Linkage,
|
||||
GlobalValue::VisibilityTypes Visibility,
|
||||
bool isConstantGlobal, const Type *Ty,
|
||||
Constant *Initializer, bool IsThreadLocal) {
|
||||
Constant *Initializer, bool IsThreadLocal,
|
||||
unsigned AddressSpace = 0) {
|
||||
if (isa<FunctionType>(Ty)) {
|
||||
GenerateError("Cannot declare global vars of function type");
|
||||
return 0;
|
||||
}
|
||||
|
||||
const PointerType *PTy = PointerType::get(Ty);
|
||||
const PointerType *PTy = PointerType::get(Ty, AddressSpace);
|
||||
|
||||
std::string Name;
|
||||
if (NameStr) {
|
||||
@ -780,7 +782,7 @@ ParseGlobalVariable(std::string *NameStr,
|
||||
// Otherwise there is no existing GV to use, create one now.
|
||||
GlobalVariable *GV =
|
||||
new GlobalVariable(Ty, isConstantGlobal, Linkage, Initializer, Name,
|
||||
CurModule.CurrentModule, IsThreadLocal);
|
||||
CurModule.CurrentModule, IsThreadLocal, AddressSpace);
|
||||
GV->setVisibility(Visibility);
|
||||
InsertValue(GV, CurModule.Values);
|
||||
return GV;
|
||||
@ -1054,7 +1056,7 @@ Module *llvm::RunVMAsmParser(llvm::MemoryBuffer *MB) {
|
||||
%token DECLARE DEFINE GLOBAL CONSTANT SECTION ALIAS VOLATILE THREAD_LOCAL
|
||||
%token TO DOTDOTDOT NULL_TOK UNDEF INTERNAL LINKONCE WEAK APPENDING
|
||||
%token DLLIMPORT DLLEXPORT EXTERN_WEAK
|
||||
%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN
|
||||
%token OPAQUE EXTERNAL TARGET TRIPLE ALIGN ADDRSPACE
|
||||
%token DEPLIBS CALL TAIL ASM_TOK MODULE SIDEEFFECT
|
||||
%token CC_TOK CCC_TOK FASTCC_TOK COLDCC_TOK X86_STDCALLCC_TOK X86_FASTCALLCC_TOK
|
||||
%token DATALAYOUT
|
||||
@ -1268,6 +1270,7 @@ OptCAlign : /*empty*/ { $$ = 0; } |
|
||||
};
|
||||
|
||||
|
||||
|
||||
SectionString : SECTION STRINGCONSTANT {
|
||||
for (unsigned i = 0, e = $2->length(); i != e; ++i)
|
||||
if ((*$2)[i] == '"' || (*$2)[i] == '\\')
|
||||
@ -1320,6 +1323,13 @@ Types
|
||||
delete $1;
|
||||
CHECK_FOR_ERROR
|
||||
}
|
||||
| Types ADDRSPACE '(' EUINT64VAL ')' '*' { // Pointer type?
|
||||
if (*$1 == Type::LabelTy)
|
||||
GEN_ERROR("Cannot form a pointer to a basic block");
|
||||
$$ = new PATypeHolder(HandleUpRefs(PointerType::get(*$1, $4)));
|
||||
delete $1;
|
||||
CHECK_FOR_ERROR
|
||||
}
|
||||
| SymbolicValueRef { // Named types are also simple types...
|
||||
const Type* tmp = getTypeVal($1);
|
||||
CHECK_FOR_ERROR
|
||||
@ -2073,6 +2083,17 @@ Definition
|
||||
} GlobalVarAttributes {
|
||||
CurGV = 0;
|
||||
}
|
||||
| OptGlobalAssign GVVisibilityStyle ThreadLocal GlobalType ConstVal
|
||||
ADDRSPACE '(' EUINT64VAL ')' {
|
||||
/* "Externally Visible" Linkage with address space qualifier */
|
||||
if ($5 == 0)
|
||||
GEN_ERROR("Global value initializer is not a constant");
|
||||
CurGV = ParseGlobalVariable($1, GlobalValue::ExternalLinkage,
|
||||
$2, $4, $5->getType(), $5, $3, $8);
|
||||
CHECK_FOR_ERROR
|
||||
} GlobalVarAttributes {
|
||||
CurGV = 0;
|
||||
}
|
||||
| OptGlobalAssign GVInternalLinkage GVVisibilityStyle ThreadLocal GlobalType
|
||||
ConstVal {
|
||||
if ($6 == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user