mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-21 03:05:26 -04:00
598198edbc
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358552 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
503 B
LLVM
23 lines
503 B
LLVM
; RUN: opt -S -O2 -inline-threshold=1 < %s | FileCheck %s
|
|
|
|
%class.A = type { i32 }
|
|
|
|
define void @_Z3barP1A(%class.A* %a) #0 {
|
|
entry:
|
|
%a1 = getelementptr inbounds %class.A, %class.A* %a, i64 0, i32 0
|
|
%0 = load i32, i32* %a1, align 4
|
|
%add = add nsw i32 %0, 10
|
|
store i32 %add, i32* %a1, align 4
|
|
ret void
|
|
}
|
|
|
|
define void @_Z3foov() #0 {
|
|
; CHECK-LABEL: @_Z3foov(
|
|
; CHECK-NOT: call void @_Z3barP1A
|
|
; CHECK: ret
|
|
entry:
|
|
%a = alloca %class.A, align 4
|
|
call void @_Z3barP1A(%class.A* %a)
|
|
ret void
|
|
}
|