[clang] 5333447 - [NFC] Fix a buildbot failure after b529744
via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 18 00:39:06 PST 2022
Author: hyeongyukim
Date: 2022-02-18T17:38:50+09:00
New Revision: 5333447a00ff568e5029483e1b46041ad1c9788f
URL: https://github.com/llvm/llvm-project/commit/5333447a00ff568e5029483e1b46041ad1c9788f
DIFF: https://github.com/llvm/llvm-project/commit/5333447a00ff568e5029483e1b46041ad1c9788f.diff
LOG: [NFC] Fix a buildbot failure after b529744
Added:
Modified:
clang/test/CodeGen/noundef-analysis.cpp
Removed:
################################################################################
diff --git a/clang/test/CodeGen/noundef-analysis.cpp b/clang/test/CodeGen/noundef-analysis.cpp
index 778810758de4..8a439cde3899 100644
--- a/clang/test/CodeGen/noundef-analysis.cpp
+++ b/clang/test/CodeGen/noundef-analysis.cpp
@@ -19,12 +19,12 @@ static int sink;
static void examineValue(int x) { sink = x; }
// ENABLED-LABEL: @main(
-// ENABLED: [[CALL:%.*]] = call noundef i32 @_Z19indirect_callee_inti(i32 noundef 0)
+// ENABLED: [[CALL:%.*]] = call noundef {{.*}}i32 @_Z19indirect_callee_inti(i32 noundef {{.*}}0)
// ENABLED: [[CALL1:%.*]] = call i32 @_Z21indirect_callee_union2u1(i32 {{.*}})
// ENABLED: [[CALL2:%.*]] = call noalias noundef nonnull i8* @_Znwm(i64 noundef 4) #[[ATTR4:[0-9]+]]
// ENABLED: call void @_ZL12examineValuei(i32 noundef {{.*}})
// DISABLED-LABEL: @main(
-// DISABLED: [[CALL:%.*]] = call i32 @_Z19indirect_callee_inti(i32 0)
+// DISABLED: [[CALL:%.*]] = call {{.*}}i32 @_Z19indirect_callee_inti(i32 {{.*}}0)
// DISABLED: [[CALL1:%.*]] = call i32 @_Z21indirect_callee_union2u1(i32 {{.*}})
// DISABLED: [[CALL2:%.*]] = call noalias nonnull i8* @_Znwm(i64 4) #[[ATTR4:[0-9]+]]
// DISABLED: call void @_ZL12examineValuei(i32 {{.*}})
More information about the cfe-commits
mailing list