commit | a168fc98dedfc8cac01c34f84b699fe5f48ad76d | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Thu Jan 15 20:18:42 2009 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Thu Jan 15 20:18:42 2009 +0000 |
tree | ebdd7fc62b19bc9bdb7cc03563fd817d3943f17e | |
parent | ef4bf3b063ea20732c4647c6f2d5d77caf907578 [diff] [blame] |
Add the private linkage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62279 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Assembler/private.ll b/test/Assembler/private.ll new file mode 100644 index 0000000..3714572 --- /dev/null +++ b/test/Assembler/private.ll
@@ -0,0 +1,9 @@ +; Test to make sure that the 'private' tag is not lost! +; +; RUN: llvm-as < %s | llvm-dis | grep private + +declare void @foo() + +define private void @foo() { + ret void +}