mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
14 lines
226 B
Rust
14 lines
226 B
Rust
// 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)
|
|
}
|