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

  /external/clang/test/SemaTemplate/
nested-name-spec-template.cpp 5 template<typename T> struct Promote;
7 template<> struct Promote<short> {
11 template<> struct Promote<int> {
15 template<> struct Promote<float> {
19 Promote<short>::type *ret_intptr(int* ip) { return ip; }
20 Promote<int>::type *ret_intptr2(int* ip) { return ip; }
23 M::Promote<int>::type *ret_intptr3(int* ip) { return ip; }
24 M::template Promote<int>::type *ret_intptr4(int* ip) { return ip; } // expected-warning{{'template' keyword outside of a template}}
25 M::template Promote<int> pi; // expected-warning{{'template' keyword outside of a template}}
28 N::M::Promote<int>::type *ret_intptr5(int* ip) { return ip;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 82 Promote, // This operation should be executed in a larger type.
287 /// it is already legal (return 'Legal') or we need to promote it to a larger
288 /// type (return 'Promote'), or we need to expand it into multiple registers
299 /// returns the larger type to promote to. For integer types that are larger
418 getOperationAction(Op, VT) == Promote);
523 assert(Action != Promote && "Can't promote condition code!");
536 /// getTypeToPromoteTo - If the action for this operation is to promote, this
537 /// method returns the ValueType to promote to.
539 assert(getOperationAction(Op, VT) == Promote &
    [all...]

Completed in 29 milliseconds