You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
20
external/llvm/test/Transforms/Inline/comdat-ipo.ll
vendored
Normal file
20
external/llvm/test/Transforms/Inline/comdat-ipo.ll
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: opt -inline -S < %s | FileCheck %s
|
||||
; RUN: opt -passes='cgscc(inline)' -S < %s | FileCheck %s
|
||||
|
||||
define i32 @caller() {
|
||||
; CHECK-LABEL: @caller(
|
||||
; CHECK-NEXT: %val2 = call i32 @linkonce_callee(i32 42)
|
||||
; CHECK-NEXT: ret i32 %val2
|
||||
|
||||
%val = call i32 @odr_callee()
|
||||
%val2 = call i32 @linkonce_callee(i32 %val);
|
||||
ret i32 %val2
|
||||
}
|
||||
|
||||
define linkonce_odr i32 @odr_callee() {
|
||||
ret i32 42
|
||||
}
|
||||
|
||||
define linkonce i32 @linkonce_callee(i32 %val) {
|
||||
ret i32 %val
|
||||
}
|
Reference in New Issue
Block a user