[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / movdir-intrinsic-x86_64.ll
blob91d10b1abb037bcdb717fff0817b86c9e92bc47a
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+movdiri | FileCheck %s
4 define void @test_movdiri(i8* %p, i64 %v) {
5 ; CHECK-LABEL: test_movdiri:
6 ; CHECK:       # %bb.0: # %entry
7 ; CHECK-NEXT:    movdiri %rsi, (%rdi)
8 ; CHECK-NEXT:    retq
9 entry:
10   call void @llvm.x86.directstore64(i8* %p, i64 %v)
11   ret void
14 declare void @llvm.x86.directstore64(i8*, i64)