[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / clang / test / CodeGenCXX / 2010-05-12-PtrToMember-Dbg.cpp
blob355c3c98dd6604944095ec4ed4fb6c766988d78c
1 //RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -o - %s | FileCheck %s
2 //CHECK: DILocalVariable(
3 class Foo
5 public:
6 int x;
7 int y;
8 Foo (int i, int j) { x = i; y = j; }
9 };
12 Foo foo(10, 11);
14 int main() {
15 int Foo::* pmi = &Foo::y;
16 return foo.*pmi;