Subzero: Enable the C++11 build.
This just adds -std=c++11 to the compiler flags and fixes the resulting errors/warnings.
Later CLs can fix things related to the LLVM 3.5 merge.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3930
R=jfb@chromium.org, kschimpf@google.com
Review URL: https://codereview.chromium.org/607443003
diff --git a/src/IceTypeConverter.cpp b/src/IceTypeConverter.cpp
index bfe1976..078c664b 100644
--- a/src/IceTypeConverter.cpp
+++ b/src/IceTypeConverter.cpp
@@ -17,7 +17,7 @@
namespace Ice {
-TypeConverter::TypeConverter(llvm::LLVMContext &Context) : Context(Context) {
+TypeConverter::TypeConverter(llvm::LLVMContext &Context) {
AddLLVMType(IceType_void, llvm::Type::getVoidTy(Context));
AddLLVMType(IceType_i1, llvm::IntegerType::get(Context, 1));
AddLLVMType(IceType_i8, llvm::IntegerType::get(Context, 8));