mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Use right pointer type in DebugIR
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191576 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b060a46b0d
commit
b99f6e14af
@ -402,7 +402,7 @@ private:
|
||||
Type *PointeeTy = T->getPointerElementType();
|
||||
if (!(N = getType(PointeeTy)))
|
||||
N = Builder.createPointerType(
|
||||
getOrCreateType(PointeeTy), Layout.getPointerSizeInBits(),
|
||||
getOrCreateType(PointeeTy), Layout.getPointerTypeSizeInBits(T),
|
||||
Layout.getPrefTypeAlignment(T), getTypeName(T));
|
||||
} else if (T->isArrayTy()) {
|
||||
SmallVector<Value *, 1> Subrange;
|
||||
|
13
test/Transforms/DebugIR/simple-addrspace.ll
Normal file
13
test/Transforms/DebugIR/simple-addrspace.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: opt -debug-ir -S %s -o - | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64-p1:16:16:16"
|
||||
|
||||
define void @foo(i32 addrspace(1)*) nounwind {
|
||||
ret void
|
||||
}
|
||||
|
||||
; Make sure the pointer size is 16
|
||||
|
||||
; CHECK: metadata !"i32 addrspace(1)*", i32 0, i64 16, i64 2, i64 0, i32 0
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user