Update tests.
authorDevang Patel <dpatel@apple.com>
Sat, 27 Sep 2008 00:25:28 +0000 (00:25 +0000)
committerDevang Patel <dpatel@apple.com>
Sat, 27 Sep 2008 00:25:28 +0000 (00:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56730 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/2008-09-02-FunctionNotes.ll
test/Assembler/2008-09-02-FunctionNotes2.ll

index ba886b1a01046b00bf9cda21e750965144680b9b..5ac9bbe2a9dbc6879381bfb13c9d24ad4f39c0cd 100644 (file)
@@ -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
 }
 
index 7740bdd596c10b60614755e882a7dec02699715b..08fd1396a85013bc1cf717cbcab7acdcee5565ff 100644 (file)
@@ -1,7 +1,7 @@
 ; Test function notes
 ; RUN: not llvm-as  %s |& grep "only one inline note" 
-
-define void @fn1() notes(inline=always,inline=never) {
+; XFAIL: *
+define void @fn1() alwaysinline, noinline {
   ret void
 }