aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ms-inline-asm.c
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-10-11 21:28:29 +0000
committerChad Rosier <mcrosier@apple.com>2012-10-11 21:28:29 +0000
commit344041574a90fecc98d9412dd28767b2568eb16f (patch)
treedddcf46ed7faaaa322e6ba96666f9ad58b4009d4 /test/CodeGen/ms-inline-asm.c
parente8219a655128b98d0573658a139de5d848451fda (diff)
[ms-inline asm] Lookup the IdentifierInfo using the Idents table and remove the
now unused static helper function. The test case needs to be remove temporarily until I can better filter memory operands that aren't actual variable reference. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ms-inline-asm.c')
-rw-r--r--test/CodeGen/ms-inline-asm.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/CodeGen/ms-inline-asm.c b/test/CodeGen/ms-inline-asm.c
index 30d922040b..00643406a8 100644
--- a/test/CodeGen/ms-inline-asm.c
+++ b/test/CodeGen/ms-inline-asm.c
@@ -167,12 +167,3 @@ unsigned t19(void) {
// CHECK: t19
// CHECK: call void asm sideeffect inteldialect "mov eax, $2\0A\09mov $0, eax\0A\09mov eax, $3\0A\09mov $1, eax", "=*m,=*m,*m,*m,~{eax},~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}, i32* %{{.*}}, i32* %{{.*}}, i32* %{{.*}}) nounwind
}
-
-void t20(void) {
- __asm {
- mov eax, fs:[0x10]
- mov eax, [eax]
- }
-// CHECK: t20
-// call void asm sideeffect inteldialect "mov eax, fs:[0x10]\0A\09mov eax, [eax]", "~{eax},~{dirflag},~{fpsr},~{flags}"() nounwind
-}