diff options
author | Reid Kleckner <rnk@google.com> | 2019-02-10 20:17:07 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-02-10 20:17:07 +0000 |
commit | 5bbdfeace66b3d494eb7a9a0256967f4914119e7 (patch) | |
tree | 8d570ee639e4027d7cdc4bf1762c109e69a05271 /clang/test/Profile/cxx-stmt-initializers.cpp | |
parent | ea246114bbed06e6ce69600fcc458583d60781aa (diff) | |
download | bcm5719-llvm-5bbdfeace66b3d494eb7a9a0256967f4914119e7.tar.gz bcm5719-llvm-5bbdfeace66b3d494eb7a9a0256967f4914119e7.zip |
Fix clang tests broken by r353547 that depend on InstrProf
llvm-svn: 353653
Diffstat (limited to 'clang/test/Profile/cxx-stmt-initializers.cpp')
-rw-r--r-- | clang/test/Profile/cxx-stmt-initializers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Profile/cxx-stmt-initializers.cpp b/clang/test/Profile/cxx-stmt-initializers.cpp index 44f7edd276f..6ff4d6eda17 100644 --- a/clang/test/Profile/cxx-stmt-initializers.cpp +++ b/clang/test/Profile/cxx-stmt-initializers.cpp @@ -3,8 +3,8 @@ // RUN: %clang_cc1 -x c++ %s -triple %itanium_abi_triple -main-file-name cxx-stmt-initializers.cpp -std=c++1z -o - -emit-llvm -fprofile-instrument=clang > %tgen // RUN: FileCheck --input-file=%tgen -check-prefix=CHECK -check-prefix=PGOGEN %s -// PGOGEN: @[[SIC:__profc__Z11switch_initv]] = private global [3 x i64] zeroinitializer -// PGOGEN: @[[IIC:__profc__Z7if_initv]] = private global [3 x i64] zeroinitializer +// PGOGEN: @[[SIC:__profc__Z11switch_initv]] = {{(private|internal)}} global [3 x i64] zeroinitializer +// PGOGEN: @[[IIC:__profc__Z7if_initv]] = {{(private|internal)}} global [3 x i64] zeroinitializer // Note: We expect counters for the function entry block, the condition in the // switch initializer, and the switch successor block. |