You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
15
external/llvm/test/CodeGen/ARM/elf-lcomm-align.ll
vendored
Normal file
15
external/llvm/test/CodeGen/ARM/elf-lcomm-align.ll
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
; RUN: llc < %s -mtriple=arm-linux-gnueabi -O0 | FileCheck %s
|
||||
; run with -O0 to avoid arm global merging.
|
||||
|
||||
@c = internal global i8 0, align 1
|
||||
@x = internal global i32 0, align 4
|
||||
|
||||
; .lcomm doesn't support alignment, so we always use .local/.comm.
|
||||
; CHECK: .local c
|
||||
; CHECK-NEXT: .comm c,1,1
|
||||
; CHECK: .local x
|
||||
; CHECK-NEXT: .comm x,4,4
|
||||
|
||||
define i32 @foo() nounwind {
|
||||
ret i32 sub (i32 ptrtoint (i8* @c to i32), i32 ptrtoint (i32* @x to i32))
|
||||
}
|
Reference in New Issue
Block a user