Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: test/cctest/cctest.gyp

Issue 1416123007: PPC: Disable gcc generation of fmadd/fmsub in cctests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'sources': [ 272 'sources': [
273 'test-platform-win32.cc', 273 'test-platform-win32.cc',
274 ], 274 ],
275 'msvs_settings': { 275 'msvs_settings': {
276 'VCCLCompilerTool': { 276 'VCCLCompilerTool': {
277 # MSVS wants this for gay-{precision,shortest}.cc. 277 # MSVS wants this for gay-{precision,shortest}.cc.
278 'AdditionalOptions': ['/bigobj'], 278 'AdditionalOptions': ['/bigobj'],
279 }, 279 },
280 }, 280 },
281 }], 281 }],
282 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
283 # disable fmadd/fmsub so that expected results match generated code in
284 # RunFloat64MulAndFloat64Add1 and friends.
285 'cflags': ['-ffp-contract=off'],
286 }],
282 ['OS=="aix"', { 287 ['OS=="aix"', {
283 'ldflags': [ '-Wl,-bbigtoc' ], 288 'ldflags': [ '-Wl,-bbigtoc' ],
284 }], 289 }],
285 ['component=="shared_library"', { 290 ['component=="shared_library"', {
286 # cctest can't be built against a shared library, so we need to 291 # cctest can't be built against a shared library, so we need to
287 # depend on the underlying static target in that case. 292 # depend on the underlying static target in that case.
288 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], 293 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'],
289 }, { 294 }, {
290 'dependencies': ['../../tools/gyp/v8.gyp:v8'], 295 'dependencies': ['../../tools/gyp/v8.gyp:v8'],
291 }], 296 }],
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 '../../build/isolate.gypi', 350 '../../build/isolate.gypi',
346 ], 351 ],
347 'sources': [ 352 'sources': [
348 'cctest.isolate', 353 'cctest.isolate',
349 ], 354 ],
350 }, 355 },
351 ], 356 ],
352 }], 357 }],
353 ], 358 ],
354 } 359 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698