summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2016-01-22 01:13:27 +0000
committerEric Fiselier <eric@efcs.ca>2016-01-22 01:13:27 +0000
commit8d4e51dd9c743b66c8dd552f0632174e04af4052 (patch)
treedbc9a6ad3983a8b2c6b98e777cdd23454e7aee67
parent00f007e3c7a29c82ca8f276f8ef68b13d2fb7918 (diff)
Merging r258277:release_38
------------------------------------------------------------------------ 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
-rw-r--r--test/incomplete_type.sh.cpp2
1 files changed, 1 insertions, 1 deletions
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>