blob: 67bef9c75fa38df83eef7e67c91f4c951747f2f8 [file] [log] [blame]
Chad Rosier360e1762012-08-08 21:15:52 +00001// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -O0 -fms-extensions -fenable-experimental-ms-inline-asm -w -emit-llvm -o - | FileCheck %s
Chad Rosier83916492012-08-08 20:37:31 +00002
3void t1() {
4// CHECK: @t1
Chad Rosier1426a812012-08-10 00:00:34 +00005// CHECK: call void asm sideeffect "", "~{dirflag},~{fpsr},~{flags}"() nounwind ia_nsdialect
Chad Rosier83916492012-08-08 20:37:31 +00006// CHECK: ret void
7 __asm {}
8}