summaryrefslogtreecommitdiff
path: root/clang/test/Sema/Inputs/conversion.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Sema/Inputs/conversion.h')
-rw-r--r--clang/test/Sema/Inputs/conversion.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Sema/Inputs/conversion.h b/clang/test/Sema/Inputs/conversion.h
new file mode 100644
index 0000000..768190f
--- /dev/null
+++ b/clang/test/Sema/Inputs/conversion.h
@@ -0,0 +1,4 @@
+/* Fake system header for Sema/conversion.c */
+
+#define LONG_MAX __LONG_MAX__
+#define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)