diff options
Diffstat (limited to 'llvm/test/CodeGen/AArch64/tiny_supported.ll')
-rw-r--r-- | llvm/test/CodeGen/AArch64/tiny_supported.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AArch64/tiny_supported.ll b/llvm/test/CodeGen/AArch64/tiny_supported.ll new file mode 100644 index 00000000000..50f4a9c344a --- /dev/null +++ b/llvm/test/CodeGen/AArch64/tiny_supported.ll @@ -0,0 +1,13 @@ +; RUN: llc -verify-machineinstrs -o - -mtriple=aarch64-none-linux-gnu -code-model=tiny < %s 2>&1 | FileCheck %s +; RUN: llc -verify-machineinstrs -o - -mtriple=aarch64-none-eabi -code-model=tiny < %s 2>&1 | FileCheck %s +; RUN: not llc -verify-machineinstrs -o - -mtriple=arm64-apple-darwin -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=NOTINY +; RUN: not llc -verify-machineinstrs -o - -mtriple=arm64-apple-ios -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=NOTINY +; RUN: not llc -verify-machineinstrs -o - -mtriple=aarch64-unknown-windows-msvc -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=NOTINY + +; CHECK-NOT: tiny code model is only supported on ELF +; CHECK-LABEL: foo +; NOTINY: tiny code model is only supported on ELF + +define void @foo() { + ret void +} |