Target attribute syntax compatibility fix - gcc uses no- rather than mno-.
llvm-svn: 246197
diff --git a/clang/test/CodeGen/attr-target-ppc.c b/clang/test/CodeGen/attr-target-ppc.c
index c98c70a..d290174 100644
--- a/clang/test/CodeGen/attr-target-ppc.c
+++ b/clang/test/CodeGen/attr-target-ppc.c
@@ -1,4 +1,4 @@
// RUN: not %clang_cc1 -triple powerpc64le-linux-gnu -emit-llvm %s -o -
-long __attribute__((target("power8-vector,mno-vsx"))) foo (void) { return 0; } // expected-error {{option '-mpower8-vector' cannot be specified with '-mno-vsx'}}
+long __attribute__((target("power8-vector,no-vsx"))) foo (void) { return 0; } // expected-error {{option '-mpower8-vector' cannot be specified with '-mno-vsx'}}