mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | not grep ' cast '
|
|
|
|
struct A {
|
|
A() : i(0) {}
|
|
int getI() {return i;}
|
|
int i;
|
|
};
|
|
|
|
int f(int j)
|
|
{
|
|
A a;
|
|
return j+a.getI();
|
|
}
|