OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Int1
(Results
1 - 2
of
2
) sorted by null
/external/llvm/unittests/VMCore/
ConstantsTest.cpp
19
IntegerType*
Int1
= IntegerType::get(getGlobalContext(), 1);
20
Constant* One = ConstantInt::get(
Int1
, 1, true);
21
Constant* Zero = ConstantInt::get(
Int1
, 0);
22
Constant* NegOne = ConstantInt::get(
Int1
, static_cast<uint64_t>(-1), true);
23
EXPECT_EQ(NegOne, ConstantInt::getSigned(
Int1
, -1));
24
Constant* Undef = UndefValue::get(
Int1
);
InstructionsTest.cpp
34
IntegerType*
Int1
= IntegerType::get(C, 1);
35
Constant* One = ConstantInt::get(
Int1
, 1, true);
72
IntegerType*
Int1
= IntegerType::get(C, 1);
73
Constant* One = ConstantInt::get(
Int1
, 1, true);
Completed in 169 milliseconds