[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Instrumentation / MemorySanitizer / X86 / vararg.ll
blobf384d8fbd905f01765217f916c532db8a62b1f0f
1 ; RUN: opt < %s -msan-check-access-address=0 -S -passes=msan 2>&1
2 ; RUN: opt < %s -msan -msan-check-access-address=0 -S
3 ; Test that code using va_start can be compiled on i386.
5 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S128"
6 target triple = "i386-unknown-linux-gnu"
8 define void @VaStart(i8* %s, ...) {
9 entry:
10   %vl = alloca i8*, align 4
11   %vl1 = bitcast i8** %vl to i8*
12   call void @llvm.va_start(i8* %vl1)
13   ret void
16 declare void @llvm.va_start(i8*)