This revision was automatically updated to reflect the committed changes.
Closed by commit rL261252: Use Backend_EmitMCNull for null codegen unit tests. 
(authored by dlj).

Changed prior to commit:
  http://reviews.llvm.org/D17405?vs=48380&id=48386#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D17405

Files:
  cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp

Index: cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp
===================================================================
--- cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp
+++ cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp
@@ -26,7 +26,7 @@
 class NullCodeGenAction : public CodeGenAction {
 public:
   NullCodeGenAction(llvm::LLVMContext *_VMContext = nullptr)
-    : CodeGenAction(Backend_EmitLL, _VMContext) {}
+    : CodeGenAction(Backend_EmitMCNull, _VMContext) {}
 
   // The action does not call methods of ATContext.
   void ExecuteAction() override {


Index: cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp
===================================================================
--- cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp
+++ cfe/trunk/unittests/Frontend/CodeGenActionTest.cpp
@@ -26,7 +26,7 @@
 class NullCodeGenAction : public CodeGenAction {
 public:
   NullCodeGenAction(llvm::LLVMContext *_VMContext = nullptr)
-    : CodeGenAction(Backend_EmitLL, _VMContext) {}
+    : CodeGenAction(Backend_EmitMCNull, _VMContext) {}
 
   // The action does not call methods of ATContext.
   void ExecuteAction() override {
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to