diff options
author | Anders Carlsson <andersca@mac.com> | 2009-04-06 17:37:10 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-04-06 17:37:10 +0000 |
commit | 65cb90efc1f4e17cb95cbe24d0d9584211f5ccbd (patch) | |
tree | 8d699e6a7c95f38634c67cd635018e5c3bbb2abc /clang/test/Preprocessor/optimize.c | |
parent | 8887072bce5d2da4edadd9ad8a334ed3723fdad3 (diff) | |
download | bcm5719-llvm-65cb90efc1f4e17cb95cbe24d0d9584211f5ccbd.tar.gz bcm5719-llvm-65cb90efc1f4e17cb95cbe24d0d9584211f5ccbd.zip |
Define __OPTIMIZE__ and __OPTIMIZE_SIZE__ if the -O[12] and -Os flags are passed to the compiler.
llvm-svn: 68450
Diffstat (limited to 'clang/test/Preprocessor/optimize.c')
-rw-r--r-- | clang/test/Preprocessor/optimize.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/optimize.c b/clang/test/Preprocessor/optimize.c new file mode 100644 index 00000000000..55df0c1196d --- /dev/null +++ b/clang/test/Preprocessor/optimize.c @@ -0,0 +1,29 @@ +// RUN: clang-cc -Eonly optimize.c -DOPT_O2 -O2 -verify && +#ifdef OPT_O2 + #ifndef __OPTIMIZE__ + #error "__OPTIMIZE__ not defined" + #endif + #ifdef __OPTIMIZE_SIZE + #error "__OPTIMIZE_SIZE__ defined" + #endif +#endif + +// RUN: clang-cc -Eonly optimize.c -DOPT_O0 -O0 -verify && +#ifdef OPT_O0 + #ifdef __OPTIMIZE__ + #error "__OPTIMIZE__ defined" + #endif + #ifdef __OPTIMIZE_SIZE + #error "__OPTIMIZE_SIZE__ defined" + #endif +#endif + +// RUN: clang-cc -Eonly optimize.c -DOPT_OS -Os -verify +#ifdef OPT_OS + #ifndef __OPTIMIZE__ + #error "__OPTIMIZE__ not defined" + #endif + #ifndef __OPTIMIZE_SIZE + #error "__OPTIMIZE_SIZE__ not defined" + #endif +#endif |