mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
516ec62bfe
constants, since doing so is irrelevant for aliasing purposes. While this doesn't increase the total number of functions marked readonly or readnone in MultiSource/ Applications (3089), it does result in 12 functions being marked readnone rather than readonly. Before: readnone: 820 readonly: 2269 After: readnone: 832 readonly: 2257 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61469 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
184 B
LLVM
9 lines
184 B
LLVM
; RUN: llvm-as < %s | opt -addreadattrs | llvm-dis | grep readnone
|
|
|
|
@s = external constant i8 ; <i8*> [#uses=1]
|
|
|
|
define i8 @f() {
|
|
%tmp = load i8* @s ; <i8> [#uses=1]
|
|
ret i8 %tmp
|
|
}
|