| ; Test of multiple indirect calls to the same target. Each call |
| ; should be to the same operand, whether it's in a register or on the |
| ; stack. |
| |
| ; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s |
| ; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck --check-prefix=OPTM1 %s |
| ; TODO: The next two lines cause this test to fail. |
| ; RUIN: %llvm2ice -O2 --verbose none %s | llvm-mc -x86-asm-syntax=intel |
| ; RUIN: %llvm2ice -Om1 --verbose none %s | llvm-mc -x86-asm-syntax=intel |
| ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
| ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
| ; RUN: | FileCheck --check-prefix=DUMP %s |
| |
| @__init_array_start = internal constant [0 x i8] zeroinitializer, align 4 |
| @__fini_array_start = internal constant [0 x i8] zeroinitializer, align 4 |
| @__tls_template_start = internal constant [0 x i8] zeroinitializer, align 8 |
| @__tls_template_alignment = internal constant [4 x i8] c"\01\00\00\00", align 4 |
| |
| define internal void @CallIndirect(i32 %f) { |
| entry: |
| %__1 = inttoptr i32 %f to void ()* |
| call void %__1() |
| call void %__1() |
| call void %__1() |
| call void %__1() |
| call void %__1() |
| ret void |
| } |
| ; CHECK: call [[REGISTER:[a-z]+]] |
| ; CHECK: call [[REGISTER]] |
| ; CHECK: call [[REGISTER]] |
| ; CHECK: call [[REGISTER]] |
| ; CHECK: call [[REGISTER]] |
| ; |
| ; OPTM1: call [[TARGET:.+]] |
| ; OPTM1: call [[TARGET]] |
| ; OPTM1: call [[TARGET]] |
| ; OPTM1: call [[TARGET]] |
| ; OPTM1: call [[TARGET]] |
| |
| ; ERRORS-NOT: ICE translation error |
| ; DUMP-NOT: SZ |