/*
This is a clang style test case for checking that preprocessor
defines match gcc.
*/
/*
RUN: for arch in -m32 -m64; do \
RUN: for lang in -std=gnu89 -ansi -std=c99 -std=gnu99; do \
RUN: for input in c objective-c; do \
RUN: for opts in "-O0" "-O1 -dynamic" "-O2 -static" "-Os"; do \
RUN: echo "-- $arch, $lang, $input, $opts --"; \
RUN: for cc in 0 1; do \
RUN: if [ "$cc" == 0 ]; then \
RUN: cc_prog=clang; \
RUN: output=%t0; \
RUN: else \
RUN: cc_prog=gcc; \
RUN: output=%t1; \
RUN: fi; \
RUN: $cc_prog $arch $lang $opts -march=core2 -dM -E -x $input %s | sort > $output; \
RUN: done; \
RUN: if (! diff %t0 %t1); then exit 1; fi; \
RUN: done; \
RUN: done; \
RUN: done; \
RUN: done;
*/
/* We don't care about this difference */
/* Undefine things we don't expect to match. */
/* Undefine things we don't expect to match. */