commit | 8045343ca2f54c27f03741573e0977d883c49d95 | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Thu Feb 05 01:01:30 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Thu Feb 05 01:01:30 2009 +0000 |
tree | fa426347b2b18baa1cda103895288dd9a2b8d7d3 | |
parent | 12c572b6fad75247b991a890d969161786d551cd [diff] |
Initialize alignment field for ByVal ABIInfo correctly. llvm-svn: 63809
diff --git a/clang/lib/CodeGen/ABIInfo.h b/clang/lib/CodeGen/ABIInfo.h index 6511923..b4bbcba 100644 --- a/clang/lib/CodeGen/ABIInfo.h +++ b/clang/lib/CodeGen/ABIInfo.h
@@ -71,7 +71,7 @@ ABIArgInfo(Kind K, const llvm::Type *TD=0, unsigned UI=0) : TheKind(K), TypeData(TD), - UIntData(0) {} + UIntData(UI) {} public: ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {}