瀏覽代碼

Fix up the ExceptionDemo for some API changes over the past <time>

This still doesn't build -Werror clean, but other than that it should at
least build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244994 91177308-0d34-0410-b5e6-96231b3b80d8
David Blaikie 10 年之前
父節點
當前提交
00c293b052
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      examples/ExceptionDemo/ExceptionDemo.cpp

+ 2 - 2
examples/ExceptionDemo/ExceptionDemo.cpp

@@ -971,7 +971,7 @@ void generateIntegerPrint(llvm::LLVMContext &context,
 
 
   llvm::Value *cast = builder.CreateBitCast(stringVar,
   llvm::Value *cast = builder.CreateBitCast(stringVar,
                                             builder.getInt8PtrTy());
                                             builder.getInt8PtrTy());
-  builder.CreateCall2(&printFunct, &toPrint, cast);
+  builder.CreateCall(&printFunct, {&toPrint, cast});
 }
 }
 
 
 
 
@@ -1973,7 +1973,7 @@ int main(int argc, char *argv[]) {
     // Set up the optimizer pipeline.
     // Set up the optimizer pipeline.
     // Start with registering info about how the
     // Start with registering info about how the
     // target lays out data structures.
     // target lays out data structures.
-    module->setDataLayout(*executionEngine->getDataLayout());
+    module->setDataLayout(executionEngine->getDataLayout());
 
 
     // Optimizations turned on
     // Optimizations turned on
 #ifdef ADD_OPT_PASSES
 #ifdef ADD_OPT_PASSES