Merging r258277:
------------------------------------------------------------------------
r258277 | ericwf | 2016-01-19 20:04:50 -0700 (Tue, 19 Jan 2016) | 1 line

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


git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/branches/release_38@258470 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/incomplete_type.sh.cpp b/test/incomplete_type.sh.cpp
index cd49ece..6998445 100644
--- a/test/incomplete_type.sh.cpp
+++ b/test/incomplete_type.sh.cpp
@@ -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>