mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
13 lines
218 B
LLVM
13 lines
218 B
LLVM
|
; RUN: llvm-as < %s | llvm-dis | grep {@f.*gc.*shadowstack}
|
||
|
; RUN: llvm-as < %s | llvm-dis | grep {@g.*gc.*java}
|
||
|
|
||
|
define void @f() gc "shadowstack" {
|
||
|
entry:
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
define void @g() gc "java" {
|
||
|
entry:
|
||
|
ret void
|
||
|
}
|