diff options
Diffstat (limited to 'test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll')
-rw-r--r-- | test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll b/test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll index 16de9cc..6632eb3 100644 --- a/test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll +++ b/test/Instrumentation/DataFlowSanitizer/debug-nonzero-labels.ll @@ -19,9 +19,9 @@ define i32 @f(i32, i32) { ; CHECK: [[CALLCMP:%.*]] = icmp ne i16 [[CALLLABEL]], 0 ; CHECK: br i1 [[CALLCMP]] %call = call i32 @g() - ; CHECK: [[LOCALLABEL:%.*]] = load i16* [[LOCALLABELALLOCA]] + ; CHECK: [[LOCALLABEL:%.*]] = load i16, i16* [[LOCALLABELALLOCA]] ; CHECK: [[LOCALCMP:%.*]] = icmp ne i16 [[LOCALLABEL]], 0 ; CHECK: br i1 [[LOCALCMP]] - %load = load i32* %i + %load = load i32, i32* %i ret i32 %load } |