summaryrefslogtreecommitdiff
path: root/gcc/ipa-str-reorg-instance-interleave.c
diff options
context:
space:
mode:
authorGary Oblock <gary@amperecomputing.com>2020-05-18 13:56:19 -0700
committerErick Ochoa <erick.ochoa@theobroma-systems.com>2020-06-03 16:05:27 +0200
commit3b71706ec3b3700a09c09780dc76dbdb85e957c6 (patch)
tree23bf70c1fbff82401846a49bf2387ce59b3267f7 /gcc/ipa-str-reorg-instance-interleave.c
parent788476c8695432710836eb9240c2bd8bcb63e8c7 (diff)
new iterface under define USE_NEW_INTERFACE
Diffstat (limited to 'gcc/ipa-str-reorg-instance-interleave.c')
-rw-r--r--gcc/ipa-str-reorg-instance-interleave.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/ipa-str-reorg-instance-interleave.c b/gcc/ipa-str-reorg-instance-interleave.c
index 2b5d4afd81b..cb519e0b496 100644
--- a/gcc/ipa-str-reorg-instance-interleave.c
+++ b/gcc/ipa-str-reorg-instance-interleave.c
@@ -38,6 +38,18 @@ along with GCC; see the file COPYING3. If not see
#include "gimple-pretty-print.h"
#include "langhooks.h"
+#if USE_NEW_INTERFACE
+int
+str_reorg_instance_interleave_qual ( Info *)
+{
+ return 0;
+}
+int
+str_reorg_instance_interleave_trans ( Info *)
+{
+ return 0;
+}
+#else
int
// Returns one if something was done and zero otherwise.
str_reorg_instance_interleave (Info *info)
@@ -46,3 +58,6 @@ str_reorg_instance_interleave (Info *info)
// DEBUG ( "Running str_reorg_instance_interleave\n");
return 0;
}
+#endif
+
+