michael@0: /* Copyright (c) 2010 Google Inc. All rights reserved. michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. */ michael@0: michael@0: #include michael@0: michael@0: int main(int argc, char *argv[]) michael@0: { michael@0: #ifdef __OPTIMIZE__ michael@0: printf("Using an optimization flag\n"); michael@0: #else michael@0: printf("Using no optimization flag\n"); michael@0: #endif michael@0: return 0; michael@0: }