Fix link flags order in RUN command.

llvm-svn: 258277
This commit is contained in:
Eric Fiselier 2016-01-20 03:04:50 +00:00
parent da656fe50e
commit 203655a936

View File

@ -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>