1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/FrontendC++/2010-04-30-OptimizedMethod-Dbg.cpp

19 lines
391 B
C++
Raw Normal View History

// RUN: %llvmgcc -g -S -O2 %s -o - | FileCheck %s
2010-04-30 21:39:29 +02:00
class foo {
public:
int bar(int x);
static int baz(int x);
};
int foo::bar(int x) {
// CHECK: {{i32 [0-9]+, i1 true(, i[0-9]+ [^\}]+[}]|[}]) ; \[ DW_TAG_subprogram \]}}
2010-04-30 21:39:29 +02:00
return x*4 + 1;
}
int foo::baz(int x) {
// CHECK: {{i32 [0-9]+, i1 true(, i[0-9]+ [^\},]+[}]|[}]) ; \[ DW_TAG_subprogram \]}}
2010-04-30 21:39:29 +02:00
return x*4 + 1;
}