From 7321fec934b05e9cc33fa51d7d112d8267dfe0ca Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 12 Feb 2013 09:14:20 +0000 Subject: [PATCH] Test for string attributes and for attribute group output. llvm-svn: 174954 --- llvm/test/Bitcode/attributes.ll | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/llvm/test/Bitcode/attributes.ll b/llvm/test/Bitcode/attributes.ll index cfb214e..76fde78 100644 --- a/llvm/test/Bitcode/attributes.ll +++ b/llvm/test/Bitcode/attributes.ll @@ -172,3 +172,31 @@ define void @f29() uninitialized_checks { ret void; } + +define void @f30() "cpu"="cortex-a8" +; CHECK: define void @f30() "cpu"="cortex-a8" +{ + ret void; +} + +; CHECK: attributes #0 = { noreturn } +; CHECK: attributes #1 = { nounwind } +; CHECK: attributes #2 = { readnone } +; CHECK: attributes #3 = { readonly } +; CHECK: attributes #4 = { noinline } +; CHECK: attributes #5 = { alwaysinline } +; CHECK: attributes #6 = { optsize } +; CHECK: attributes #7 = { ssp } +; CHECK: attributes #8 = { sspreq } +; CHECK: attributes #9 = { noredzone } +; CHECK: attributes #10 = { noimplicitfloat } +; CHECK: attributes #11 = { naked } +; CHECK: attributes #12 = { inlinehint } +; CHECK: attributes #13 = { alignstack=4 } +; CHECK: attributes #14 = { returns_twice } +; CHECK: attributes #15 = { uwtable } +; CHECK: attributes #16 = { nonlazybind } +; CHECK: attributes #17 = { address_safety } +; CHECK: attributes #18 = { thread_safety } +; CHECK: attributes #19 = { uninitialized_checks } +; CHECK: attributes #20 = { "cpu"="cortex-a8" } -- 2.7.4