mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-15 04:56:07 +00:00

Fixes a bot failure: http://lab.llvm.org:8011/builders/llvm-clang-x86_64-expensive-checks-win/builds/11806 llvm-svn: 339964
7 lines
189 B
C
7 lines
189 B
C
// RUN: %clang_cc1 %s -emit-llvm -fprofile-instrument=clang -fsanitize=thread -o - | FileCheck %s
|
|
|
|
// CHECK: define {{.*}}@foo
|
|
// CHECK-NOT: load {{.*}}foo
|
|
// CHECK: ret void
|
|
void foo() {}
|