forked from OSchip/llvm-project
10 lines
313 B
LLVM
10 lines
313 B
LLVM
; RUN: opt < %s -mtriple=x86_64-linux -passes='asan-pipeline' -asan-globals-live-support=0 -S | FileCheck %s
|
|
|
|
$my_var = comdat any
|
|
|
|
@my_var = global i32 42, align 4, comdat
|
|
; CHECK: @my_var = global i32 42, comdat, align 4
|
|
|
|
; Don't instrument my_var, it is comdat.
|
|
; CHECK-NOT: call {{.*}}__asan_register_globals
|