HomeSort by relevance Sort by last modified time
    Searched defs:common_type (Results 1 - 2 of 2) sorted by null

  /external/clang/test/SemaCXX/
libstdcxx_common_type_hack.cpp 4 // an issue with GCC's <type_traits> implementation. std::common_type
14 template<typename...Ts> struct common_type {}; struct in namespace:std
15 template<typename A, typename B> struct common_type<A, B> { struct in namespace:std
28 using T = std::common_type<int, int>::type;
  /art/compiler/optimizing/
ssa_builder.cc 124 Primitive::Type common_type = phi->GetType(); local
135 if (common_type == input_type) {
137 } else if (Primitive::Is64BitType(common_type) != Primitive::Is64BitType(input_type)) {
140 } else if (Primitive::IsIntegralType(common_type)) {
145 common_type = input_type;
149 DCHECK(Primitive::IsFloatingPointType(common_type) || common_type == Primitive::kPrimNot);
152 DCHECK((common_type == Primitive::kPrimFloat && input_type == Primitive::kPrimNot) ||
153 (common_type == Primitive::kPrimNot && input_type == Primitive::kPrimFloat));
160 phi->SetType(common_type);
166 Primitive::Type common_type = phi->GetType(); local
    [all...]

Completed in 4972 milliseconds