Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ define void @test2() #0 personality ptr @__gcc_personality_v0 {
; CHECK-NEXT: successors: %bb.2(0x40000000), %bb.3(0x40000000)
; CHECK-NEXT: {{ $}}
; CHECK-NEXT: [[DEF:%[0-9]+]]:_(p0) = G_IMPLICIT_DEF
; CHECK-NEXT: G_INVOKE_REGION_START
; CHECK-NEXT: EH_LABEL <mcsymbol >
; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr64common = COPY [[DEF]](p0)
; CHECK-NEXT: INLINEASM &"", 1 /* sideeffect attdialect */, 2555913 /* reguse:GPR64common */, [[COPY]]
; CHECK-NEXT: EH_LABEL <mcsymbol >
; CHECK-NEXT: G_BR %bb.2
; CHECK-NEXT: {{ $}}
; CHECK-NEXT: bb.2.a:
Expand Down
58 changes: 0 additions & 58 deletions llvm/test/CodeGen/X86/no-seh-unwind-inline-asm-codegen.ll

This file was deleted.

51 changes: 0 additions & 51 deletions llvm/test/CodeGen/X86/no-unwind-inline-asm-codegen.ll

This file was deleted.

2 changes: 1 addition & 1 deletion llvm/test/Transforms/Inline/inline-invoke-with-asm-call.ll
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ define void @caller() personality ptr @__objc_personality_v0 {
}

define void @callee_with_asm() {
call void asm sideeffect "mov\09r7, r7\09\09@ marker for objc_retainAutoreleaseReturnValue", ""()
call void asm sideeffect "mov\09r7, r7\09\09@ marker for objc_retainAutoreleaseReturnValue", ""() nounwind
ret void
}

Expand Down
4 changes: 2 additions & 2 deletions llvm/test/Transforms/Inline/no-unwind-inline-asm.ll
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ entry:

define dso_local void @proxy() personality ptr @__gxx_personality_v0 {
entry:
call void asm sideeffect "call trap", "~{dirflag},~{fpsr},~{flags}"()
call void asm sideeffect "call trap", "~{dirflag},~{fpsr},~{flags}"()
call void asm sideeffect "call trap", "~{dirflag},~{fpsr},~{flags}"() nounwind
call void asm sideeffect "call trap", "~{dirflag},~{fpsr},~{flags}"() nounwind
ret void
}

Expand Down