diff options
Diffstat (limited to 'test/Assembler/alloca-size-one.ll')
-rw-r--r-- | test/Assembler/alloca-size-one.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Assembler/alloca-size-one.ll b/test/Assembler/alloca-size-one.ll new file mode 100644 index 0000000..fc5ee34 --- /dev/null +++ b/test/Assembler/alloca-size-one.ll @@ -0,0 +1,11 @@ +; 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 +} |