mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8a584da153
To match NewPM pass name, and also for readability. Also rename rpo-functionattrs -> rpo-function-attrs while we're here. Reviewed By: arsenm Differential Revision: https://reviews.llvm.org/D84694
15 lines
427 B
LLVM
15 lines
427 B
LLVM
; RUN: opt < %s -inline -instcombine -function-attrs | llvm-dis
|
|
;
|
|
; Check that nocapture attributes are added when run after an SCC pass.
|
|
; PR3520
|
|
|
|
define i32 @use(i8* %x) nounwind readonly {
|
|
; CHECK: @use(i8* nocapture %x)
|
|
%1 = tail call i64 @strlen(i8* %x) nounwind readonly
|
|
%2 = trunc i64 %1 to i32
|
|
ret i32 %2
|
|
}
|
|
|
|
declare i64 @strlen(i8*) nounwind readonly
|
|
; CHECK: declare i64 @strlen(i8* nocapture) nounwind readonly
|