You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
305 B
12 lines
305 B
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
define void @foo() {
|
|
entry:
|
|
; CHECK: %alloc32 = alloca i1, align 8
|
|
; CHECK: %alloc64 = alloca i1, i64 1, align 8
|
|
%alloc32 = alloca i1, i32 1, align 8
|
|
%alloc64 = alloca i1, i64 1, align 8
|
|
unreachable
|
|
}
|