aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.dg/opt/pr100469.C32
1 files changed, 32 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/opt/pr100469.C b/gcc/testsuite/g++.dg/opt/pr100469.C
new file mode 100644
index 0000000..9eb37e7
--- /dev/null
+++ b/gcc/testsuite/g++.dg/opt/pr100469.C
@@ -0,0 +1,32 @@
+// PR debug/100469
+// { dg-do compile }
+// { dg-options "-O2 -fcompare-debug -fno-tree-dse -fno-tree-forwprop -fno-tree-tail-merge --param=sccvn-max-alias-queries-per-access=0" }
+
+struct S
+{
+ long m;
+ S (const S &s)
+ {
+ m = s.m;
+ }
+ S (long l)
+ {
+ m = l;
+ }
+ bool operatorX (const S &s)
+ {
+ return m >= s.m;
+ }
+};
+
+static inline S
+bar (S a, S b)
+{
+ return a.operatorX (b) ? a : b;
+}
+
+S
+foo (S s)
+{
+ return bar (s, (S) 0);
+}