Add a default constructor to get deterministic behavior.

Should fix the msan and valgrind bots.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196509 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2013-12-05 16:21:17 +00:00
parent 9e0807cb61
commit 6b11950e39

View File

@ -24,6 +24,7 @@ namespace llvm {
class AMDGPUAsmPrinter : public AsmPrinter {
private:
struct SIProgramInfo {
SIProgramInfo() : NumSGPR(0), NumVGPR(0) {}
unsigned NumSGPR;
unsigned NumVGPR;
};