[ms-inline asm] Add test case for r172121.

Part of rdar://12991541

llvm-svn: 172122
This commit is contained in:
Chad Rosier 2013-01-10 22:11:28 +00:00
parent a4bc9437a2
commit 97b5895029
1 changed files with 7 additions and 0 deletions

View File

@ -239,3 +239,10 @@ void t23() {
// CHECK: t23
// CHECK: call void asm sideeffect inteldialect "the_label:", "~{dirflag},~{fpsr},~{flags}"() nounwind
}
void t24_helper(void) {}
void t24() {
__asm call t24_helper
// CHECK: t24
// CHECK: call void asm sideeffect inteldialect "call $0", "r,~{dirflag},~{fpsr},~{flags}"(void ()* @t24_helper) nounwind
}