Mercurial > hg > CbC > CbC_llvm
view llvm/test/Transforms/FunctionAttrs/optnone.ll @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
; RUN: opt < %s -passes=function-attrs -S | FileCheck %s @x = global i32 0 define void @test_opt(ptr %p) { ; CHECK-LABEL: @test_opt ; CHECK: (ptr nocapture readnone %p) #0 { ret void } define void @test_optnone(ptr %p) noinline optnone { ; CHECK-LABEL: @test_optnone ; CHECK: (ptr %p) #1 { ret void } declare i8 @strlen(ptr) noinline optnone ; CHECK-LABEL: @strlen ; CHECK: (ptr) #1 ; CHECK-LABEL: attributes #0 ; CHECK: = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) } ; CHECK-LABEL: attributes #1 ; CHECK: = { noinline optnone }