mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
7 lines
108 B
C++
7 lines
108 B
C++
// RUN: %llvmgxx -O3 -S -o - %s
|
|
|
|
#include <cmath>
|
|
|
|
double foo(double X, int Y) {
|
|
return std::pow(X, Y);
|
|
}
|