| Index: src/IceTargetLoweringARM32.cpp
|
| diff --git a/src/IceTargetLoweringARM32.cpp b/src/IceTargetLoweringARM32.cpp
|
| index 287e42dab33537604c52d985b2e65abfc1aaf544..7e96d0417696d2a7a12d14f27c3ead8ac15971ac 100644
|
| --- a/src/IceTargetLoweringARM32.cpp
|
| +++ b/src/IceTargetLoweringARM32.cpp
|
| @@ -702,15 +702,28 @@ void TargetARM32::makeRandomRegisterPermutation(
|
| UnimplementedError(Func->getContext()->getFlags());
|
| }
|
|
|
| -/* TODO(jvoung): avoid duplicate symbols with multiple targets.
|
| -void ConstantUndef::emitWithoutDollar(GlobalContext *) const {
|
| - llvm_unreachable("Not expecting to emitWithoutDollar undef");
|
| +void TargetARM32::emit(const ConstantInteger32 *C) const {
|
| + if (!ALLOW_DUMP)
|
| + return;
|
| + Ostream &Str = Ctx->getStrEmit();
|
| + Str << getConstantPrefix() << C->getValue();
|
| +}
|
| +
|
| +void TargetARM32::emit(const ConstantInteger64 *) const {
|
| + llvm::report_fatal_error("Not expecting to emit 64-bit integers");
|
| +}
|
| +
|
| +void TargetARM32::emit(const ConstantFloat *C) const {
|
| + UnimplementedError(Ctx->getFlags());
|
| +}
|
| +
|
| +void TargetARM32::emit(const ConstantDouble *C) const {
|
| + UnimplementedError(Ctx->getFlags());
|
| }
|
|
|
| -void ConstantUndef::emit(GlobalContext *) const {
|
| - llvm_unreachable("undef value encountered by emitter.");
|
| +void TargetARM32::emit(const ConstantUndef *) const {
|
| + llvm::report_fatal_error("undef value encountered by emitter.");
|
| }
|
| -*/
|
|
|
| TargetDataARM32::TargetDataARM32(GlobalContext *Ctx)
|
| : TargetDataLowering(Ctx) {}
|
|
|