Add a default constructor to get deterministic behavior.

Should fix the msan and valgrind bots.

llvm-svn: 196509
This commit is contained in:
Rafael Espindola 2013-12-05 16:21:17 +00:00
parent 120880c780
commit eb989f9afc

View File

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