[compiler-rt] a0d913a - Fix regression due to reviews.llvm.org/D74436 by adding option ffp-contract=off to RUN line

Melanie Blower via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 12 19:05:37 PST 2020


Author: Melanie Blower
Date: 2020-02-12T19:05:18-08:00
New Revision: a0d913a1ace967bfd460a35e3b328464830a441c

URL: https://github.com/llvm/llvm-project/commit/a0d913a1ace967bfd460a35e3b328464830a441c
DIFF: https://github.com/llvm/llvm-project/commit/a0d913a1ace967bfd460a35e3b328464830a441c.diff

LOG: Fix regression due to reviews.llvm.org/D74436 by adding option ffp-contract=off to RUN line

Added: 
    

Modified: 
    compiler-rt/test/builtins/Unit/muldc3_test.c

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/builtins/Unit/muldc3_test.c b/compiler-rt/test/builtins/Unit/muldc3_test.c
index 7eb5ed664272..129def93abb2 100644
--- a/compiler-rt/test/builtins/Unit/muldc3_test.c
+++ b/compiler-rt/test/builtins/Unit/muldc3_test.c
@@ -1,4 +1,4 @@
-// RUN: %clang_builtins %s %librt -lm -o %t && %run %t
+// RUN: %clang_builtins %s -ffp-contract=off %librt -lm -o %t && %run %t
 // REQUIRES: librt_has_muldc3
 //===-- muldc3_test.c - Test __muldc3 -------------------------------------===//
 //


        


More information about the llvm-commits mailing list