diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-02-12 19:42:57 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-02-12 19:42:57 +0000 |
commit | 868d668e78dbd66ca23c8201857b25c8cecf4cd4 (patch) | |
tree | e8de67a558fd9b0b88e469265c9cd72acdb9c028 /clang/test | |
parent | 5f6b4d3fc5b3d3d2888cc24061165cd0441c5a14 (diff) | |
download | bcm5719-llvm-868d668e78dbd66ca23c8201857b25c8cecf4cd4.tar.gz bcm5719-llvm-868d668e78dbd66ca23c8201857b25c8cecf4cd4.zip |
[ms-inline asm] Update test case now that we are correctly parsing __emit directives.
llvm-svn: 175000
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGen/ms-inline-asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/ms-inline-asm.c b/clang/test/CodeGen/ms-inline-asm.c index ea3704af4ae..dbc35980b22 100644 --- a/clang/test/CodeGen/ms-inline-asm.c +++ b/clang/test/CodeGen/ms-inline-asm.c @@ -298,8 +298,8 @@ void t26() { // CHECK: t26 // CHECK: call void asm sideeffect inteldialect "pushad", "~{dirflag},~{fpsr},~{flags}"() nounwind // CHECK: call void asm sideeffect inteldialect "mov eax, $$0", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind -// CHECK: call void asm sideeffect inteldialect "__emit 0fh", "~{dirflag},~{fpsr},~{flags}"() nounwind -// CHECK: call void asm sideeffect inteldialect "__emit 0a2h", "~{dirflag},~{fpsr},~{flags}"() nounwind +// CHECK: call void asm sideeffect inteldialect ".byte 0fh", "~{dirflag},~{fpsr},~{flags}"() nounwind +// CHECK: call void asm sideeffect inteldialect ".byte 0a2h", "~{dirflag},~{fpsr},~{flags}"() nounwind // CHECK: call void asm sideeffect inteldialect "popad", "~{dirflag},~{fpsr},~{flags}"() nounwind } |