[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / align-branch-boundary-default.ll
blobd2b4433426fbdf1e0bf7ebfb271557745810ab62
1 ; RUN: llc -verify-machineinstrs -O3 -mtriple=x86_64-unknown-unknown -mcpu=skylake -filetype=obj < %s | llvm-objdump -d --no-show-raw-insn - | FileCheck %s
3 ; TODO: At the moment, autopadding for SKX102 is not the default, but
4 ; eventually we'd like ti to be for the integrated assembler (only).
6 target datalayout = "e-i64:64-f80:128-n8:16:32:64-S128"
7 target triple = "x86_64-pc-linux-gnu"
9 define void @test(i1 %c) {
10 ; CHECK: 0: pushq
11 ; CHECK-NEXT: 1: movl
12 ; CHECK-NEXT: 3: callq
13 ; CHECK-NEXT: 8: callq
14 ; CHECK-NEXT: d: callq
15 ; CHECK-NEXT: 12: callq
16 ; CHECK-NEXT: 17: callq
17 ; TODO: want a nop here
18 ; CHECK-NEXT: 1c: testb
19 ; CHECK-NEXT: 1f: je
20 entry:
21   call void @foo()
22   call void @foo()
23   call void @foo()
24   call void @foo()
25   call void @foo()
26   br i1 %c, label %taken, label %untaken
28 taken:
29   call void @foo()
30   ret void
31 untaken:
32   call void @bar()
33   ret void
36 declare void @foo()
37 declare void @bar()