}
}
assert(0 && "getFloatingTypeOfSizeWithinDomain(): illegal domain");
+ //an invalid return value, but the assert
+ //will ensure that this code is never reached.
+ return VoidTy;
}
/// compareFloatingType - Handles 3 different combos:
return EmitLoadOfOCUElementLValue(LV, ExprType);
assert(0 && "Bitfield ref not impl!");
+ //an invalid RValue, but the assert will
+ //ensure that this point is never reached
+ return RValue();
}
// If this is a reference to a subset of the elements of a vector, either
return LValue::MakeAddr(CGM.GetAddrOfGlobalDecl(D));
}
assert(0 && "Unimp declref");
+ //an invalid LValue, but the assert will
+ //ensure that this point is never reached.
+ return LValue();
}
LValue CodeGenFunction::EmitUnaryOpLValue(const UnaryOperator *E) {
return llvm::FunctionType::get(ResultType, ArgTys, isVarArg, 0);
}
+
+ case Type::ObjcInterface:
+ assert(0 && "FIXME: add missing functionality here");
+ break;
+
case Type::Tagged:
const TagType &TT = cast<TagType>(Ty);
const TagDecl *TD = TT.getDecl();