[clang] 1478d4d - [clang][Interp] Disable a float128/long double test

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 28 02:19:54 PDT 2023


Author: Timm Bäder
Date: 2023-07-28T11:19:35+02:00
New Revision: 1478d4dc8dc44c109bff1bbe0486cc40674a0ee2

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

LOG: [clang][Interp] Disable a float128/long double test

This breaks ppc64le builders:
https://lab.llvm.org/buildbot/#builders/230/builds/16405

Added: 
    

Modified: 
    clang/test/AST/Interp/builtin-functions.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/AST/Interp/builtin-functions.cpp b/clang/test/AST/Interp/builtin-functions.cpp
index ef28f003117dc3..eec6c9ec4bbf81 100644
--- a/clang/test/AST/Interp/builtin-functions.cpp
+++ b/clang/test/AST/Interp/builtin-functions.cpp
@@ -47,7 +47,7 @@ namespace nan {
   constexpr double NaN3 = __builtin_nan("foo"); // expected-error {{must be initialized by a constant expression}} \
                                                 // ref-error {{must be initialized by a constant expression}}
   constexpr float NaN4 = __builtin_nanf("");
-  constexpr long double NaN5 = __builtin_nanf128("");
+  //constexpr long double NaN5 = __builtin_nanf128("");
 
   /// FIXME: This should be accepted by the current interpreter as well.
   constexpr char f[] = {'0', 'x', 'A', 'E', '\0'};


        


More information about the cfe-commits mailing list