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 -fno-memory-profile %s -### 2>&1 | FileCheck %s --check-prefix=OFF 3 // CHECK: "-cc1" {{.*}} "-fmemory-profile" 4 // CHECK: ld{{.*}}libclang_rt.memprof{{.*}}libclang_rt.memprof_cxx 5 // OFF-NOT: "-fmemory-profile" 6 // OFF-NOT: libclang_rt.memprof 7