Type::getPrimitiveID() -> getTypeID()

llvm-svn: 14287
This commit is contained in:
Misha Brukman 2004-06-21 17:19:08 +00:00
parent e05203fb40
commit 6292a056a8
3 changed files with 5 additions and 5 deletions

View File

@ -266,7 +266,7 @@ void Printer::emitGlobalConstant(const Constant *CV) {
// FP Constants are printed as integer constants to avoid losing
// precision...
double Val = CFP->getValue();
switch (CFP->getType()->getPrimitiveID()) {
switch (CFP->getType()->getTypeID()) {
default: assert(0 && "Unknown floating point type!");
case Type::FloatTyID: {
union FU { // Abide by C TBAA rules
@ -313,7 +313,7 @@ void Printer::emitGlobalConstant(const Constant *CV) {
const Type *type = CV->getType();
O << "\t";
switch (type->getPrimitiveID()) {
switch (type->getTypeID()) {
case Type::UByteTyID: case Type::SByteTyID:
O << ".byte";
break;

View File

@ -266,7 +266,7 @@ void Printer::emitGlobalConstant(const Constant *CV) {
// FP Constants are printed as integer constants to avoid losing
// precision...
double Val = CFP->getValue();
switch (CFP->getType()->getPrimitiveID()) {
switch (CFP->getType()->getTypeID()) {
default: assert(0 && "Unknown floating point type!");
case Type::FloatTyID: {
union FU { // Abide by C TBAA rules
@ -313,7 +313,7 @@ void Printer::emitGlobalConstant(const Constant *CV) {
const Type *type = CV->getType();
O << "\t";
switch (type->getPrimitiveID()) {
switch (type->getTypeID()) {
case Type::UByteTyID: case Type::SByteTyID:
O << ".byte";
break;

View File

@ -248,7 +248,7 @@ void PowerPCRegisterInfo::emitEpilogue(MachineFunction &MF,
const TargetRegisterClass*
PowerPCRegisterInfo::getRegClassForType(const Type* Ty) const {
switch (Ty->getPrimitiveID()) {
switch (Ty->getTypeID()) {
case Type::LongTyID:
case Type::ULongTyID: assert(0 && "Long values can't fit in registers!");
default: assert(0 && "Invalid type to getClass!");