1 ; A call to a libcall function is not a statepoint.
2 ; This test verifies that calls to libcalls functions do not get converted to
4 ; RUN: opt -S -passes=rewrite-statepoints-for-gc < %s | FileCheck %s
6 declare double @ldexp(double %x, i32 %n) nounwind readnone
8 define double @test_libcall(double %x) gc "statepoint-example" {
9 ; CHECK-LABEL: test_libcall
10 ; CHECK-NEXT: %res = call double @ldexp(double %x, i32 5)
11 ; CHECK-NEXT: ret double %res
12 %res = call double @ldexp(double %x, i32 5) nounwind readnone