aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/regalloc
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-02-04 21:39:46 +0100
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-02-04 21:39:46 +0100
commitf1670b99c8ed93532f95746bd446168c75a90f6d (patch)
tree790cac07c38e48865d9124fee5a692b6fd7ed509 /test/monniaux/regalloc
parent17fb588d1a5b446db3731f4485d8bb075bc2fac2 (diff)
downloadcompcert-kvx-f1670b99c8ed93532f95746bd446168c75a90f6d.tar.gz
compcert-kvx-f1670b99c8ed93532f95746bd446168c75a90f6d.zip
spill queue complaints
Diffstat (limited to 'test/monniaux/regalloc')
-rw-r--r--test/monniaux/regalloc/spill_queue_issues.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/monniaux/regalloc/spill_queue_issues.c b/test/monniaux/regalloc/spill_queue_issues.c
new file mode 100644
index 00000000..8e2019a8
--- /dev/null
+++ b/test/monniaux/regalloc/spill_queue_issues.c
@@ -0,0 +1,5 @@
+int g(double);
+ ;
+void meow (int x) {
+ g(100.0 * x);
+}