[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Instrumentation / MemorySanitizer / pr32842.ll
blob381ab1b3a4354f1410828180edfda4d0b2aa754c
1 ; Regression test for https://bugs.llvm.org/show_bug.cgi?id=32842
3 ; RUN: opt < %s -S -passes=msan 2>&1 | FileCheck %s
4 ;target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 define zeroext i1 @_Z1fii(i32 %x, i32 %y) sanitize_memory {
8 entry:
9   %cmp = icmp slt i32 %x, %y
10   ret i1 %cmp
13 ; CHECK:      [[X:[^ ]+]] = load{{.*}}__msan_param_tls{{.*}}
14 ; CHECK:      [[Y:[^ ]+]] = load{{.*}}__msan_param_tls{{.*}}
15 ; CHECK:      [[OR:[^ ]+]] = or i32 [[X]], [[Y]]
17 ; Make sure the shadow of the (x < y) comparison isn't truncated to i1.
18 ; CHECK-NOT:  trunc i32 [[OR]] to i1
19 ; CHECK:      [[CMP:[^ ]+]] = icmp ne i32 [[OR]], 0
20 ; CHECK:      store i1 [[CMP]],{{.*}}__msan_retval_tls