mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
3a9c279a90
Along the lines of D77454 and D79968. Unlike loads and stores, the default alignment is getPrefTypeAlign, to match the existing handling in various places, including SelectionDAG and InstCombine. Differential Revision: https://reviews.llvm.org/D80044
12 lines
313 B
LLVM
12 lines
313 B
LLVM
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
|
|
|
target datalayout = "A1"
|
|
|
|
; CHECK: Allocation instruction pointer not in the stack address space!
|
|
; CHECK-NEXT: %alloca_scalar_no_align = alloca i32, align 4, addrspace(2)
|
|
|
|
define void @use_alloca() {
|
|
%alloca_scalar_no_align = alloca i32, addrspace(2)
|
|
ret void
|
|
}
|