Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDWARFDebugLineTest.cpp87 LT2.addStandardOpcode(DW_LNS_copy, {}); in setupParser()
88 LT2.addByte(0xbb); in setupParser()
282 LT2.addStandardOpcode(DW_LNS_copy, {});
283 LT2.addByte(0xbb);
286 LT2.addStandardOpcode(DW_LNS_copy, {});
287 LT2.addByte(0xcc);
352 LT2.addStandardOpcode(DW_LNS_copy, {});
353 LT2.addByte(0xbb);
356 LT2.addStandardOpcode(DW_LNS_copy, {});
357 LT2.addByte(0xcc);
[all …]
/llvm-project-15.0.7/llvm/unittests/DebugInfo/GSYM/
H A DGSYMTest.cpp727 LineTable LT2; in TEST() local
731 ASSERT_EQ(LT1, LT2); in TEST()
733 ASSERT_FALSE(LT1 < LT2); in TEST()
734 ASSERT_FALSE(LT2 < LT1); in TEST()
735 ASSERT_FALSE(LT2 < LT2); in TEST()
739 LT2.push(Line0); in TEST()
740 ASSERT_LT(LT1, LT2); in TEST()
741 ASSERT_NE(LT1, LT2); in TEST()
745 ASSERT_EQ(LT1, LT2); in TEST()
746 ASSERT_FALSE(LT1 < LT2); in TEST()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp973 std::pair<InstructionCost, MVT> LT2 = TLI->getTypeLegalizationCost(DL, Ty2); in vectorCostAdjustmentFactor() local
974 if (LT2.first != 1 || !LT2.second.isVector()) in vectorCostAdjustmentFactor()