aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/builtin-assume.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/builtin-assume.c')
-rw-r--r--test/Sema/builtin-assume.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/Sema/builtin-assume.c b/test/Sema/builtin-assume.c
index 1f6a3a0cd910..512eeeccdc4a 100644
--- a/test/Sema/builtin-assume.c
+++ b/test/Sema/builtin-assume.c
@@ -1,11 +1,18 @@
// RUN: %clang_cc1 -triple i386-mingw32 -fms-extensions -fsyntax-only -verify %s
+// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsyntax-only -verify %s
int foo(int *a, int i) {
+#ifdef _MSC_VER
__assume(i != 4);
- __assume(++i > 2); //expected-warning {{the argument to __assume has side effects that will be discarded}}
+ __assume(++i > 2); //expected-warning {{the argument to '__assume' has side effects that will be discarded}}
int test = sizeof(struct{char qq[(__assume(i != 5), 7)];});
+#else
+ __builtin_assume(i != 4);
+ __builtin_assume(++i > 2); //expected-warning {{the argument to '__builtin_assume' has side effects that will be discarded}}
+ int test = sizeof(struct{char qq[(__builtin_assume(i != 5), 7)];});
+#endif
return a[i];
}