| Devang Patel | 3ee36af | 2011-02-22 20:55:26 +0000 | [diff] [blame] | 1 | // RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s |
| 2 | |||||
| 3 | // TAG_member is used to encode debug info for class constructor. | ||||
| 4 | // CHECK: TAG_member | ||||
| 5 | class A { | ||||
| 6 | public: | ||||
| 7 | int z; | ||||
| 8 | }; | ||||
| 9 | |||||
| Eli Friedman | 22cfaf5 | 2012-02-16 22:45:48 +0000 | [diff] [blame] | 10 | A *foo (A* x) { |
| 11 | A *a = new A(*x); | ||||
| Devang Patel | 3ee36af | 2011-02-22 20:55:26 +0000 | [diff] [blame] | 12 | return a; |
| 13 | } | ||||
| 14 | |||||