mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56730 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
02a4da2c22
commit
8526390768
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user