mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
8 lines
108 B
C++
8 lines
108 B
C++
|
// RUN: llvm-g++ -O3 -S -o - %s
|
||
|
|
||
|
#include <cmath>
|
||
|
|
||
|
double foo(double X, int Y) {
|
||
|
return std::pow(X, Y);
|
||
|
}
|