diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-02 20:58:16 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-02 20:58:16 +0000 |
commit | cc4d6ce5326e58df3699e755862d519745af9008 (patch) | |
tree | a5f1bf30491c2acb138d21e9e8b7ed23c3e59acb /llvm/test/Assembler/2008-09-02-FunctionNotes2.ll | |
parent | 600879c8e8c69379ba4335e6e7e6ff2bb17111f0 (diff) | |
download | bcm5719-llvm-cc4d6ce5326e58df3699e755862d519745af9008.tar.gz bcm5719-llvm-cc4d6ce5326e58df3699e755862d519745af9008.zip |
Function notes tests.
llvm-svn: 55648
Diffstat (limited to 'llvm/test/Assembler/2008-09-02-FunctionNotes2.ll')
-rw-r--r-- | llvm/test/Assembler/2008-09-02-FunctionNotes2.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/Assembler/2008-09-02-FunctionNotes2.ll b/llvm/test/Assembler/2008-09-02-FunctionNotes2.ll new file mode 100644 index 00000000000..7740bdd596c --- /dev/null +++ b/llvm/test/Assembler/2008-09-02-FunctionNotes2.ll @@ -0,0 +1,7 @@ +; Test function notes +; RUN: not llvm-as %s |& grep "only one inline note" + +define void @fn1() notes(inline=always,inline=never) { + ret void +} + |