forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			441 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			441 B
		
	
	
	
		
			C++
		
	
	
	
| class DummyClass {
 | |
|   int a_;
 | |
|  public:
 | |
|   DummyClass(int a) : a_(a) {}
 | |
|   int add(int b) {
 | |
|     return a_ + b;
 | |
|   }
 | |
| };
 | |
| 
 | |
| int f(int a, int b) {
 | |
|   DummyClass c(a);
 | |
|   return c.add(b);
 | |
| }
 | |
| 
 | |
| int main() {
 | |
|   return f(2, 3);
 | |
| }
 | |
| 
 | |
| // Built with Clang 3.2 and ld.gold linker:
 | |
| // $ mkdir -p /tmp/dbginfo
 | |
| // $ cp dwarfdump-test-zlib.cc /tmp/dbginfo
 | |
| // $ cd /tmp/dbginfo
 | |
| // $ clang++ -g dwarfdump-test-zlib.cc -Wl,--compress-debug-sections=zlib \
 | |
| //   -o <output>
 |