mv12-aux.C: Delete, move to mv12-aux.cc.

2013-02-13  Sriraman Tallam  <tmsriram@google.com>

	* g++.dg/ext/mv12-aux.C: Delete, move to mv12-aux.cc.
	* g++.dg/ext/mv12-aux.cc: New file.
	* g++.dg/ext/mv12.h: Remove directives. Fix comment.
	* g++.dg/ext/mv12.C: Fix file name.

From-SVN: r196033
This commit is contained in:
Sriraman Tallam 2013-02-13 21:51:27 +00:00
parent d9a3647a22
commit 9e3a83c18a
3 changed files with 2 additions and 8 deletions

View File

@ -1,10 +1,6 @@
// Test case to check if multiversioning works as expected when the versions
// are defined in different files. Auxiliary file for mv12.C.
// { dg-do compile { target i?86-*-* x86_64-*-* } }
// { dg-require-ifunc "" }
// { dg-options "-O2" }
#include "mv12.h"
__attribute__ ((target ("sse4.2")))

View File

@ -4,7 +4,7 @@
// { dg-do run { target i?86-*-* x86_64-*-* } }
// { dg-require-ifunc "" }
// { dg-options "-O2" }
// { dg-additional-sources "mv12-aux.C" }
// { dg-additional-sources "mv12-aux.cc" }
#include "mv12.h"

View File

@ -1,6 +1,4 @@
// Header file used by mv12.C and mv12-aux.C.
// { dg-do compile { target i?86-*-* x86_64-*-* } }
// { dg-options "" }
// Header file used by mv12.C and mv12-aux.cc.
int foo () __attribute__ ((target ("default")));
int foo () __attribute__ ((target ("sse4.2")));