// RUN: %clang_cc1 -target-feature -mmx -target-feature +sse2 -triple i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s
// no-mmx should put mmx into memory
typedef int i32v2;
int
// CHECK-LABEL: define{{.*}} i32 @a(i64 noundef %x.coerce)
// but SSE2 vectors should still go into an SSE2 register
typedef int i32v4;
int
// CHECK-LABEL: define{{.*}} i32 @b(<4 x i32> noundef %x)