| Index: test/CodeGenCXX/member-function-pointers.cpp
|
| diff --git a/test/CodeGenCXX/member-function-pointers.cpp b/test/CodeGenCXX/member-function-pointers.cpp
|
| index fb06fa77039d9a33fa8a173309d38c341c6354c8..f786800cccfd88cabdf4bd19f61323cd54f977b2 100644
|
| --- a/test/CodeGenCXX/member-function-pointers.cpp
|
| +++ b/test/CodeGenCXX/member-function-pointers.cpp
|
| @@ -6,6 +6,8 @@
|
|
|
| // PNaCl uses the same representation of method pointers as ARM.
|
| // RUN: %clang_cc1 %s -emit-llvm -o - -triple=le32-unknown-nacl | FileCheck -check-prefix GLOBAL-ARM %s
|
| +// Emscripten uses the same representation of method pointers as ARM.
|
| +// RUN: %clang_cc1 %s -emit-llvm -o - -triple=asmjs-unknown-emscripten | FileCheck -check-prefix GLOBAL-ARM %s
|
|
|
| struct A { int a; void f(); virtual void vf1(); virtual void vf2(); };
|
| struct B { int b; virtual void g(); };
|
|
|