blob: 6aa3a33aa91a625f12091f39beba5b5d1b9225db [file] [log] [blame]
; RUN: opt < %s -passes='function(memprof),module(memprof-module)' -S | FileCheck --check-prefixes=STATIC %s
; RUN: cat %s > %t.pic.ll
; RUN: echo -e '!llvm.module.flags = !{!0}\n!0 = !{i32 7, !"PIC Level", i32 1}' >> %t.pic.ll
; RUN: opt < %t.pic.ll -passes='function(memprof),module(memprof-module)' -S | FileCheck --check-prefixes=PIC %s
; STATIC: @__memprof_shadow_memory_dynamic_address = external dso_local global i64
; PIC: @__memprof_shadow_memory_dynamic_address = external global i64
define i32 @test_load(i32* %a) {
entry:
%tmp1 = load i32, i32* %a, align 4
ret i32 %tmp1
}