search for: testclass3

Displaying 1 result from an estimated 1 matches for "testclass3".

Did you mean: testclass
2015 May 15
2
[LLVMdev] Clang question on x86-64 class type definitions
...virtual int Foo() { return 1; } }; class TestClass2 : public TestClass1 { int X; public: virtual int Foo() { return 1; } }; class TestClass3 : public TestClass2 { int X; public: virtual int Foo() { return 1; } }; Here is the command lines that I am using, for 32-bit and 64-bit mode respectively: clang.exe -S -emit-llvm -O0 t...