mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
bf08e82d8e
llvm-svn: 79992
18 lines
346 B
C
18 lines
346 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
|
|
/* This code used to break GCC's SSA computation code. It would create
|
|
uses of B & C that are not dominated by their definitions. See:
|
|
http://gcc.gnu.org/ml/gcc/2002-03/msg00697.html
|
|
*/
|
|
int bar();
|
|
int foo()
|
|
{
|
|
int a,b,c;
|
|
|
|
a = b + c;
|
|
b = bar();
|
|
c = bar();
|
|
return a + b + c;
|
|
}
|
|
|