Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

33 changes: 0 additions & 33 deletions libcxx/test/libcxx/utilities/template.bitset/includes.pass.cpp

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// <math.h>

// [support.c.headers.other]/1
// ... except for the functions described in [sf.cmath], the
// std::lerp function overloads ([c.math.lerp]) ...

#include <cassert>
#include <math.h>

template <class = int>
int lerp(float, float, float) {
return 32;
}

template <class = int>
int lerp(double, double, double) {
return 32;
}

template <class = int>
int lerp(long double, long double, long double) {
return 32;
}

int main(int, char**) {
assert(lerp(0.f, 0.f, 0.f) == 32);
assert(lerp(0., 0., 0.) == 32);
assert(lerp(0.l, 0.l, 0.l) == 32);

return 0;
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
//
//===----------------------------------------------------------------------===//

// REQUIRES: target={{.+}}-aix{{.*}}
// ADDITIONAL_COMPILE_FLAGS: -fvisibility-inlines-hidden

// When there is a weak hidden symbol in user code and a strong definition
Expand Down
Loading