11 lines
434 B
LLVM
11 lines
434 B
LLVM
; RUN: opt < %s -mtriple=x86_64-linux -asan -asan-module -enable-new-pm=0 -asan-globals-live-support=0 -S | FileCheck %s
|
|
; 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
|