summaryrefslogtreecommitdiff
path: root/test/incomplete_type.sh.cpp
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2016-01-20 03:04:50 +0000
committerEric Fiselier <eric@efcs.ca>2016-01-20 03:04:50 +0000
commit08dfc9e15a12a6548543f1d347b81f6aabbe68df (patch)
treedbc9a6ad3983a8b2c6b98e777cdd23454e7aee67 /test/incomplete_type.sh.cpp
parent91fc04d667ef064c0750133aa75bd58886030f15 (diff)
Fix link flags order in RUN command.
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@258277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/incomplete_type.sh.cpp')
-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>