From 85263907681d21094cab75547cf4a5f538703fcc Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Sat, 27 Sep 2008 00:25:28 +0000 Subject: [PATCH] Update tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56730 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Assembler/2008-09-02-FunctionNotes.ll | 4 ++-- test/Assembler/2008-09-02-FunctionNotes2.ll | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Assembler/2008-09-02-FunctionNotes.ll b/test/Assembler/2008-09-02-FunctionNotes.ll index ba886b1a010..5ac9bbe2a9d 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 } diff --git a/test/Assembler/2008-09-02-FunctionNotes2.ll b/test/Assembler/2008-09-02-FunctionNotes2.ll index 7740bdd596c..08fd1396a85 100644 --- a/test/Assembler/2008-09-02-FunctionNotes2.ll +++ b/test/Assembler/2008-09-02-FunctionNotes2.ll @@ -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 }