Commit 9e9f7b9c by Richard Guenther Committed by Richard Biener

re PR tree-optimization/31081 (Inliner messes up SSA for abnormals)

2008-01-04  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/31081
	* g++.dg/torture/pr31081-1.C: New testcase.
	* g++.dg/torture/pr31081-2.C: Likewise.

From-SVN: r131320
parent 5e96e6c0
2008-01-04 Richard Guenther <rguenther@suse.de>
PR tree-optimization/31081
* g++.dg/torture/pr31081-1.C: New testcase.
* g++.dg/torture/pr31081-2.C: Likewise.
2008-01-04 Richard Sandiford <rsandifo@nildram.co.uk> 2008-01-04 Richard Sandiford <rsandifo@nildram.co.uk>
* gcc.target/mips/rsqrt-1.c: Require -mgp64. * gcc.target/mips/rsqrt-1.c: Require -mgp64.
/* { dg-do compile } */
static int get_record (void);
void f(void);
int g(void);
static int get_record (void)
{
int result;
try
{
result = g();
f();
}
catch (const int &) { }
return result;
}
int NAV_get_record ( )
{
int result;
for (;;)
if (get_record ())
return 1;
}
/* { dg-do compile } */
class CString
{
public:
CString();
~CString() { operator delete(_rep); }
operator const char*() const { return _rep; }
private:
CString(char* cstr);
char* _rep;
};
class String
{
public:
String();
String(const char* str);
~String();
CString getCString() const;
};
int is_absolute_path(const char *path);
inline void getAbsolutePath(
const char* path,
const String& filename)
{
(!is_absolute_path(filename.getCString()) && path);
return;
}
int foo(int &value);
int main(int argc, char** argv)
{
int repeatTestCount = 0;
if (foo(repeatTestCount))
{
repeatTestCount = 1;
}
for (int numTests = 1; numTests <= repeatTestCount; numTests++)
{
getAbsolutePath("blah", "blah");
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment