aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2008-09-02-FunctionNotes.ll
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-27 00:25:28 +0000
committerDevang Patel <dpatel@apple.com>2008-09-27 00:25:28 +0000
commit85263907681d21094cab75547cf4a5f538703fcc (patch)
tree6b61adc3bfe9415201b85d6647ec8e9f97efba2b /test/Assembler/2008-09-02-FunctionNotes.ll
parent02a4da2c2212652d29feef3c1426c47e2ccb323c (diff)
downloadexternal_llvm-85263907681d21094cab75547cf4a5f538703fcc.zip
external_llvm-85263907681d21094cab75547cf4a5f538703fcc.tar.gz
external_llvm-85263907681d21094cab75547cf4a5f538703fcc.tar.bz2
Update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56730 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/2008-09-02-FunctionNotes.ll')
-rw-r--r--test/Assembler/2008-09-02-FunctionNotes.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Assembler/2008-09-02-FunctionNotes.ll b/test/Assembler/2008-09-02-FunctionNotes.ll
index ba886b1..5ac9bbe 100644
--- a/test/Assembler/2008-09-02-FunctionNotes.ll
+++ b/test/Assembler/2008-09-02-FunctionNotes.ll
@@ -1,11 +1,11 @@
; Test function notes
; RUN: llvm-as < %s | llvm-dis | grep inline | count 2
-define void @fn1() notes(inline=always) {
+define void @fn1() alwaysinline {
ret void
}
-define void @fn2() notes(inline=never) {
+define void @fn2() noinline {
ret void
}