Home
last modified time | relevance | path

Searched refs:EVal (Results 1 – 3 of 3) sorted by relevance

/external/clang/test/Sema/
Dconditional-expr.c53 enum Enum { EVal }; in foo() enumerator
54 test0 = test0 ? EVal : test0; in foo()
55 test1 = test0 ? EVal : (int) test0; in foo()
57 (unsigned) EVal in foo()
60 …test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'uns… in foo()
61 …test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'uns… in foo()
/external/clang/test/SemaCXX/
Dconditional-expr.cpp53 enum Enum { EVal }; enumerator
170 i1 = i1 ? i1 : EVal; in test()
171 i1 = i1 ? EVal : i1; in test()
207 test0 = test0 ? EVal : test0; in test()
208 test1 = test0 ? EVal : (int) test0; in test()
210 …test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'uns… in test()
211 …test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'uns… in test()
213 test1 = test0 ? EVal : (int) test0; in test()
214 test1 = test0 ? (int) test0 : EVal; in test()
/external/llvm/lib/Target/MBlaze/AsmParser/
DMBlazeAsmParser.cpp434 const MCExpr *EVal = MCConstantExpr::Create(reg,getContext()); in ParseFsl() local
435 return MBlazeOperand::CreateFslImm(EVal,S,E); in ParseFsl()
443 const MCExpr *EVal; in ParseImmediate() local
451 if (getParser().ParseExpression(EVal)) in ParseImmediate()
454 return MBlazeOperand::CreateImm(EVal, S, E); in ParseImmediate()