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

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

Issue 1812823008: S390: Disable gcc generation of mul-add in cctests (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased on master Created 4 years, 9 months 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 'test-platform-win32.cc', 307 'test-platform-win32.cc',
308 ], 308 ],
309 'msvs_settings': { 309 'msvs_settings': {
310 'VCCLCompilerTool': { 310 'VCCLCompilerTool': {
311 # MSVS wants this for gay-{precision,shortest}.cc. 311 # MSVS wants this for gay-{precision,shortest}.cc.
312 'AdditionalOptions': ['/bigobj'], 312 'AdditionalOptions': ['/bigobj'],
313 }, 313 },
314 }, 314 },
315 }], 315 }],
316 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \ 316 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \
317 or v8_target_arch=="arm" or v8_target_arch=="arm64"', { 317 or v8_target_arch=="arm" or v8_target_arch=="arm64" \
318 or v8_target_arch=="s390" or v8_target_arch=="s390x"', {
318 # disable fmadd/fmsub so that expected results match generated code in 319 # disable fmadd/fmsub so that expected results match generated code in
319 # RunFloat64MulAndFloat64Add1 and friends. 320 # RunFloat64MulAndFloat64Add1 and friends.
320 'cflags': ['-ffp-contract=off'], 321 'cflags': ['-ffp-contract=off'],
321 }], 322 }],
322 ['OS=="aix"', { 323 ['OS=="aix"', {
323 'ldflags': [ '-Wl,-bbigtoc' ], 324 'ldflags': [ '-Wl,-bbigtoc' ],
324 }], 325 }],
325 ['component=="shared_library"', { 326 ['component=="shared_library"', {
326 # cctest can't be built against a shared library, so we need to 327 # cctest can't be built against a shared library, so we need to
327 # depend on the underlying static target in that case. 328 # depend on the underlying static target in that case.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 '../../build/isolate.gypi', 417 '../../build/isolate.gypi',
417 ], 418 ],
418 'sources': [ 419 'sources': [
419 'cctest.isolate', 420 'cctest.isolate',
420 ], 421 ],
421 }, 422 },
422 ], 423 ],
423 }], 424 }],
424 ], 425 ],
425 } 426 }
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