Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
codegen
/
issues
/
issue-34947-pow-i32.rs
blob: c9141c0e92521eeb814e8f60b299aa0a23f6ec87 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -O
#![
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
)
}