diff options
Diffstat (limited to 'llvm/test/CodeGen/AVR/lower-formal-arguments-assertion.ll')
-rw-r--r-- | llvm/test/CodeGen/AVR/lower-formal-arguments-assertion.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AVR/lower-formal-arguments-assertion.ll b/llvm/test/CodeGen/AVR/lower-formal-arguments-assertion.ll new file mode 100644 index 00000000000..4c1a5ef939b --- /dev/null +++ b/llvm/test/CodeGen/AVR/lower-formal-arguments-assertion.ll @@ -0,0 +1,7 @@ +; RUN: llc < %s -march=avr | FileCheck %s + +define void @foo(i1) { +; CHECK-LABEL: foo: +; CHECK: ret + ret void +} |