Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / sibcall-3.ll
blobc2cddfa214ee0f25885ce5ee3901f69d5888699e
1 ; RUN: llc < %s -mtriple=i386-unknown-unknown | FileCheck %s
2 ; PR7193
4 define void @t1(ptr inreg %dst, ptr inreg %src, ptr inreg %len) nounwind {
5 ; CHECK-LABEL: t1:
6 ; CHECK: calll 0
7   tail call void null(ptr inreg %dst, ptr inreg %src, ptr inreg %len) nounwind
8   ret void
11 define void @t2(ptr inreg %dst, ptr inreg %src, ptr inreg %len) nounwind {
12 ; CHECK-LABEL: t2:
13 ; CHECK: jmpl
14   tail call void null(ptr inreg %dst, ptr inreg %src) nounwind
15   ret void