blob: fcbd95218c33d5a4f720e64285819b4ba2c45ac5 [file] [log] [blame]
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// RUN: cxx_compiler -c %s -o %t.o
// RUN: bindump %t.o | FileCheck prefixes %s
#include <climits>
template <unsigned long I> void foo4();
// 64bit unsigned long
// LP64-DAG: _Z4foo4ILm18446744073709551615EEvv
// ILP32-DAG: _Z4foo4ILm4294967295EEvv
template <> void foo4<ULONG_MAX>() {}