diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-27 00:25:28 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-27 00:25:28 +0000 |
commit | 509a3bad9085a28944c4b6af504cdfb99b3a7b0b (patch) | |
tree | 6b61adc3bfe9415201b85d6647ec8e9f97efba2b /test/Assembler | |
parent | 1b1e7efa1a51f2b6a88f9159eb58079fecf693a6 (diff) | |
download | external_llvm-509a3bad9085a28944c4b6af504cdfb99b3a7b0b.zip external_llvm-509a3bad9085a28944c4b6af504cdfb99b3a7b0b.tar.gz external_llvm-509a3bad9085a28944c4b6af504cdfb99b3a7b0b.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')
-rw-r--r-- | test/Assembler/2008-09-02-FunctionNotes.ll | 4 | ||||
-rw-r--r-- | 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 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 } diff --git a/test/Assembler/2008-09-02-FunctionNotes2.ll b/test/Assembler/2008-09-02-FunctionNotes2.ll index 7740bdd..08fd139 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 } |