Update for llvm change.

llvm-svn: 322807
This commit is contained in:
Rafael Espindola 2018-01-18 02:08:32 +00:00
parent 9fbc040599
commit 2e4d7026dc
2 changed files with 2 additions and 2 deletions

View File

@ -17,4 +17,4 @@ define hidden void @f() {
@llvm.used = appending global [1 x i8*] [ i8* bitcast (void ()* @f to i8*)]
; Check that f is not internalized.
; CHECK: define dso_local hidden void @f()
; CHECK: define hidden void @f()

View File

@ -29,7 +29,7 @@ target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
declare hidden void @g()
; IR: declare dso_local hidden void @g()
; IR: declare hidden void @g()
define void @f() {
call void @g()