Replace the "movnt" intrinsics with a native store + nontemporal metadata bit.
[oota-llvm.git] / test / Assembler / 2007-09-29-GC.ll
1 ; RUN: llvm-as < %s | llvm-dis | grep {@f.*gc.*shadowstack}
2 ; RUN: llvm-as < %s | llvm-dis | grep {@g.*gc.*java}
3
4 define void @f() gc "shadowstack" {
5 entry:
6         ret void
7 }
8
9 define void @g() gc "java" {
10 entry:
11         ret void
12 }