diff options
Diffstat (limited to 'clang/test/CodeGenCXX/builtin-constant-p.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/builtin-constant-p.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/clang/test/CodeGenCXX/builtin-constant-p.cpp b/clang/test/CodeGenCXX/builtin-constant-p.cpp deleted file mode 100644 index 6d853e8a682..00000000000 --- a/clang/test/CodeGenCXX/builtin-constant-p.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// RUN: %clang_cc1 -triple=x86_64-linux-gnu -emit-llvm -o - %s - -// Don't crash if the argument to __builtin_constant_p isn't scalar. -template <typename T> -constexpr bool is_constant(const T v) { - return __builtin_constant_p(v); -} - -template <typename T> -class numeric { - public: - using type = T; - - template <typename S> - constexpr numeric(S value) - : value_(static_cast<T>(value)) {} - - private: - const T value_; -}; - -bool bcp() { - return is_constant(numeric<int>(1)); -} |