aboutsummaryrefslogtreecommitdiff
path: root/clang/test
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-12-02 07:35:57 +0000
committerBill Wendling <isanbard@gmail.com>2013-12-02 07:35:57 +0000
commite9dd613c95118daafffa445af776ade2e960dfd7 (patch)
treea07c85b8d4a5b8e540d739c2fd856a9f4e7328ba /clang/test
parentdaea5b6167f0453f1ac4e0656501a85fcf92dfca (diff)
downloadllvm-e9dd613c95118daafffa445af776ade2e960dfd7.zip
llvm-e9dd613c95118daafffa445af776ade2e960dfd7.tar.gz
llvm-e9dd613c95118daafffa445af776ade2e960dfd7.tar.bz2
Merging r196045:
------------------------------------------------------------------------ r196045 | d0k | 2013-12-01 03:48:10 -0800 (Sun, 01 Dec 2013) | 3 lines Reenable ms inline asm test. LLVM r196044 should make it pass. ------------------------------------------------------------------------ llvm-svn: 196072
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/Sema/ms-inline-asm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/Sema/ms-inline-asm.c b/clang/test/Sema/ms-inline-asm.c
index 1916d34..69f234e 100644
--- a/clang/test/Sema/ms-inline-asm.c
+++ b/clang/test/Sema/ms-inline-asm.c
@@ -1,4 +1,4 @@
-// REQUIRES: disabled
+// REQUIRES: x86-64-registered-target
// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -fasm-blocks -Wno-microsoft -verify -fsyntax-only
void t1(void) {
@@ -13,22 +13,22 @@ void f() {
}
f();
__asm {
- mov eax, 1+=2 // expected-error 2 {{unknown token in expression}}
+ mov eax, 1+=2 // expected-error {{unknown token in expression}}
}
f();
__asm {
- mov eax, 1+++ // expected-error 2 {{unknown token in expression}}
+ mov eax, 1+++ // expected-error {{unknown token in expression}}
}
f();
__asm {
- mov eax, LENGTH bar // expected-error {{Unable to lookup expr!}}
+ mov eax, LENGTH bar // expected-error {{unable to lookup expression}}
}
f();
__asm {
- mov eax, SIZE bar // expected-error {{Unable to lookup expr!}}
+ mov eax, SIZE bar // expected-error {{unable to lookup expression}}
}
f();
__asm {
- mov eax, TYPE bar // expected-error {{Unable to lookup expr!}}
+ mov eax, TYPE bar // expected-error {{unable to lookup expression}}
}
}