mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
11 lines
348 B
C
11 lines
348 B
C
|
// llvm-gcc -O1+ should run simplify libcalls, O0 shouldn't
|
||
|
// and -fno-builtins shouldn't.
|
||
|
// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep {call.*exp2f}
|
||
|
// RUN: %llvmgcc %s -S -emit-llvm -O1 -o - | grep {call.*ldexp}
|
||
|
// RUN: %llvmgcc %s -S -emit-llvm -O3 -fno-builtin -o - | grep {call.*exp2f}
|
||
|
|
||
|
float t4(unsigned char x) {
|
||
|
return exp2f(x);
|
||
|
}
|
||
|
|