1 // RUN: %clangxx -target x86_64-linux-gnu -fmemory-profile %s -### 2>&1 | FileCheck %s 2 // RUN: %clangxx -target x86_64-linux-gnu -fmemory-profile=foo %s -### 2>&1 | FileCheck %s --check-prefix=DIR 3 // RUN: %clangxx -target x86_64-linux-gnu -fmemory-profile -fno-memory-profile %s -### 2>&1 | FileCheck %s --check-prefix=OFF 4 // RUN: %clangxx -target x86_64-linux-gnu -fmemory-profile=foo -fno-memory-profile %s -### 2>&1 | FileCheck %s --check-prefix=OFF 5 // CHECK: "-cc1" {{.*}} "-fmemory-profile" 6 // CHECK: ld{{.*}}libclang_rt.memprof{{.*}}libclang_rt.memprof_cxx 7 // DIR: "-cc1" {{.*}} "-fmemory-profile=foo" 8 // DIR: ld{{.*}}libclang_rt.memprof{{.*}}libclang_rt.memprof_cxx 9 // OFF-NOT: "-fmemory-profile" 10 // OFF-NOT: libclang_rt.memprof 11