[X86] X86DAGToDAGISel - attempt to merge XMM/YMM loads with YMM/ZMM loads of the...
[llvm-project.git] / llvm / test / CodeGen / PowerPC / blockaddress.ll
blob99fba208a66cb92b6783e0566592b0825ca91d3a
1 ; RUN: llc -verify-machineinstrs < %s -code-model=small -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s -check-prefix=SMALL
2 ; RUN: llc -verify-machineinstrs < %s -code-model=medium -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s -check-prefix=MEDIUM
3 ; RUN: llc -verify-machineinstrs < %s -code-model=large -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s -check-prefix=MEDIUM
4 ; RUN: llc -verify-machineinstrs < %s -code-model=small -mtriple=powerpc64le-unknown-linux-gnu | FileCheck %s -check-prefix=SMALL
5 ; RUN: llc -verify-machineinstrs < %s -code-model=medium -mtriple=powerpc64le-unknown-linux-gnu | FileCheck %s -check-prefix=MEDIUM
6 ; RUN: llc -verify-machineinstrs < %s -code-model=large -mtriple=powerpc64le-unknown-linux-gnu | FileCheck %s -check-prefix=MEDIUM
8 define ptr @test() {
9 entry:
10   br label %here
12 here:                                             ; preds = %entry
13 ; MEDIUM: .Ltmp[[TMP0:[0-9]+]]:
14 ; MEDIUM: addis [[R0:[0-9]+]], 2, .LC[[LC0:[0-9]+]]@toc@ha
15 ; MEDIUM: ld 3, .LC[[LC0]]@toc@l([[R0]])
16 ; MEDIUM: blr
17 ; MEDIUM: .LC[[LC0]]:
18 ; MEDIUM: .tc .Ltmp[[TMP0]][TC],.Ltmp[[TMP0]]
19 ; SMALL: .Ltmp[[TMP0:[0-9]+]]:
20 ; SMALL: ld 3, .LC[[LC0:[0-9]+]]@toc(2)
21 ; SMALL: blr
22 ; SMALL: .LC[[LC0]]:
23 ; SMALL: .tc .Ltmp[[TMP0]][TC],.Ltmp[[TMP0]]
24   ret ptr blockaddress(@test, %here)