Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
codegen-llvm
/
issues
/
issue-34947-pow-i32.rs
blob: b4750cd35bc34f72bd622b8bed3cf20518258344 [
file
] [
log
] [
blame
]
//@ compile-flags: -Copt-level=3
#![
crate_type
=
"lib"
]
// CHECK-LABEL: @issue_34947
#[
no_mangle
]
pub
fn
issue_34947
(
x
:
i32
)
->
i32
{
// CHECK: mul
// CHECK-NEXT: mul
// CHECK-NEXT: mul
// CHECK-NEXT: ret
x
.
pow
(
5
)
}