Index: lib/CodeGen/GlobalISel/InstructionSelect.cpp =================================================================== --- lib/CodeGen/GlobalISel/InstructionSelect.cpp +++ lib/CodeGen/GlobalISel/InstructionSelect.cpp @@ -181,9 +181,9 @@ if (TargetRegisterInfo::isVirtualRegister(SrcReg) && TargetRegisterInfo::isVirtualRegister(DstReg)) { MachineRegisterInfo &MRI = MF.getRegInfo(); - auto SrcRC = MRI.getRegClass(SrcReg); - auto DstRC = MRI.getRegClass(DstReg); - if (SrcRC == DstRC) { + auto SrcRC = MRI.getRegClassOrNull(SrcReg); + auto DstRC = MRI.getRegClassOrNull(DstReg); + if (SrcReg && SrcRC == DstRC) { MRI.replaceRegWith(DstReg, SrcReg); MI.eraseFromParentAndMarkDBGValuesForRemoval(); } Index: test/CodeGen/AArch64/GlobalISel/select-copy-norc.mir =================================================================== --- /dev/null +++ test/CodeGen/AArch64/GlobalISel/select-copy-norc.mir @@ -0,0 +1,103 @@ +# RUN: llc -O0 -mtriple arm64-- -run-pass=instruction-select %s -o - | FileCheck %s +--- | + ; ModuleID = 'stripped.ll' + source_filename = "stripped.ll" + target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128" + target triple = "arm64-apple-ios8.0" + + %0 = type opaque + %1 = type { %2*, i64 } + %2 = type { i64 } + %3 = type opaque + + ; Function Attrs: noinline + define hidden swiftcc { %0*, i64 } @foo(%1* swiftself, %3** swifterror) #0 { + br label %3 + + ;