[libcxxabi] r258470 - Merging r258277:

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 21 17:13:27 PST 2016


Author: ericwf
Date: Thu Jan 21 19:13:27 2016
New Revision: 258470

URL: http://llvm.org/viewvc/llvm-project?rev=258470&view=rev
Log:
Merging r258277:
------------------------------------------------------------------------
r258277 | ericwf | 2016-01-19 20:04:50 -0700 (Tue, 19 Jan 2016) | 1 line

Fix link flags order in RUN command.
------------------------------------------------------------------------

Modified:
    libcxxabi/branches/release_38/test/incomplete_type.sh.cpp

Modified: libcxxabi/branches/release_38/test/incomplete_type.sh.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/branches/release_38/test/incomplete_type.sh.cpp?rev=258470&r1=258469&r2=258470&view=diff
==============================================================================
--- libcxxabi/branches/release_38/test/incomplete_type.sh.cpp (original)
+++ libcxxabi/branches/release_38/test/incomplete_type.sh.cpp Thu Jan 21 19:13:27 2016
@@ -16,7 +16,7 @@
 
 // RUN: %cxx %flags %compile_flags -c %s -o %t.one.o
 // RUN: %cxx %flags %compile_flags -c %s -o %t.two.o -DTU_ONE
-// RUN: %cxx %flags %link_flags -o %t.exe %t.one.o %t.two.o
+// RUN: %cxx %flags %t.one.o %t.two.o %link_flags -o %t.exe
 // RUN: %exec %t.exe
 
 #include <stdio.h>




More information about the cfe-commits mailing list