2018-05-06 05:19:59 +08:00
|
|
|
# RUN: llc -mtriple=i386-linux-gnu -run-pass=legalizer %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=X32
|
2017-07-02 16:58:29 +08:00
|
|
|
--- |
|
|
|
|
|
|
|
|
@g_int = global i32 0, align 4
|
|
|
|
|
|
|
|
define i32* @test_global_ptrv() {
|
|
|
|
entry:
|
|
|
|
ret i32* @g_int
|
|
|
|
}
|
|
|
|
...
|
|
|
|
---
|
|
|
|
name: test_global_ptrv
|
|
|
|
# ALL-LABEL: name: test_global_ptrv
|
[Alignment] Use llvm::Align in MachineFunction and TargetLowering - fixes mir parsing
Summary:
This catches malformed mir files which specify alignment as log2 instead of pow2.
See https://reviews.llvm.org/D65945 for reference,
This is patch is part of a series to introduce an Alignment type.
See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html
See this patch for the introduction of the type: https://reviews.llvm.org/D64790
Reviewers: courbet
Subscribers: MatzeB, qcolombet, dschuff, arsenm, sdardis, nemanjai, jvesely, nhaehnle, hiraditya, kbarton, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, jsji, Petar.Avramovic, asbirlea, s.egerton, pzheng, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67433
llvm-svn: 371608
2019-09-11 19:16:48 +08:00
|
|
|
alignment: 16
|
2017-07-02 16:58:29 +08:00
|
|
|
legalized: false
|
|
|
|
regBankSelected: false
|
|
|
|
# ALL: registers:
|
|
|
|
# ALL-NEXT: - { id: 0, class: _, preferred-register: '' }
|
|
|
|
registers:
|
|
|
|
- { id: 0, class: _, preferred-register: '' }
|
2017-10-25 02:04:54 +08:00
|
|
|
# ALL: %0:_(p0) = G_GLOBAL_VALUE @g_int
|
2018-02-01 06:04:26 +08:00
|
|
|
# ALL-NEXT: $eax = COPY %0(p0)
|
|
|
|
# ALL-NEXT: RET 0, implicit $rax
|
2017-07-02 16:58:29 +08:00
|
|
|
body: |
|
|
|
|
bb.1.entry:
|
|
|
|
%0(p0) = G_GLOBAL_VALUE @g_int
|
2018-02-01 06:04:26 +08:00
|
|
|
$eax = COPY %0(p0)
|
|
|
|
RET 0, implicit $rax
|
2017-07-02 16:58:29 +08:00
|
|
|
|
|
|
|
...
|