diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Assembler/align-inst-alloca.ll | 6 | ||||
-rw-r--r-- | test/Assembler/align-inst-load.ll | 6 | ||||
-rw-r--r-- | test/Assembler/align-inst-store.ll | 6 | ||||
-rw-r--r-- | test/Assembler/align-inst.ll | 8 |
4 files changed, 26 insertions, 0 deletions
diff --git a/test/Assembler/align-inst-alloca.ll b/test/Assembler/align-inst-alloca.ll new file mode 100644 index 0000000..0343beb --- /dev/null +++ b/test/Assembler/align-inst-alloca.ll @@ -0,0 +1,6 @@ +; RUN: not llvm-as %s -o /dev/null 2>/dev/null + +define void @foo() { + %p = alloca i1, align 1073741824 + ret void +} diff --git a/test/Assembler/align-inst-load.ll b/test/Assembler/align-inst-load.ll new file mode 100644 index 0000000..3586be2 --- /dev/null +++ b/test/Assembler/align-inst-load.ll @@ -0,0 +1,6 @@ +; RUN: not llvm-as %s -o /dev/null 2>/dev/null + +define void @foo() { + load i1* %p, align 1073741824 + ret void +} diff --git a/test/Assembler/align-inst-store.ll b/test/Assembler/align-inst-store.ll new file mode 100644 index 0000000..8c3b712 --- /dev/null +++ b/test/Assembler/align-inst-store.ll @@ -0,0 +1,6 @@ +; RUN: not llvm-as %s -o /dev/null 2>/dev/null + +define void @foo() { + store i1 false, i1* %p, align 1073741824 + ret void +} diff --git a/test/Assembler/align-inst.ll b/test/Assembler/align-inst.ll new file mode 100644 index 0000000..7bf0b64 --- /dev/null +++ b/test/Assembler/align-inst.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as %s -o /dev/null + +define void @foo() { + %p = alloca i1, align 536870912 + load i1* %p, align 536870912 + store i1 false, i1* %p, align 536870912 + ret void +} |