r291310 - [ThinLTO] Specify target triple in new test

Teresa Johnson via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 6 16:09:43 PST 2017


Author: tejohnson
Date: Fri Jan  6 18:09:42 2017
New Revision: 291310

URL: http://llvm.org/viewvc/llvm-project?rev=291310&view=rev
Log:
[ThinLTO] Specify target triple in new test

This should fix bot failures in this test.

Modified:
    cfe/trunk/test/CodeGen/thinlto_backend.ll

Modified: cfe/trunk/test/CodeGen/thinlto_backend.ll
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/thinlto_backend.ll?rev=291310&r1=291309&r2=291310&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/thinlto_backend.ll (original)
+++ cfe/trunk/test/CodeGen/thinlto_backend.ll Fri Jan  6 18:09:42 2017
@@ -15,7 +15,7 @@
 ; Ensure we ignore empty index file under -ignore-empty-index-file, and run
 ; non-ThinLTO compilation which would not import f2
 ; RUN: touch %t4.thinlto.bc
-; RUN: %clang -O2 -o %t4.o -x ir %t1.o -c -fthinlto-index=%t4.thinlto.bc -mllvm -ignore-empty-index-file
+; RUN: %clang -target x86_64-unknown-linux-gnu -O2 -o %t4.o -x ir %t1.o -c -fthinlto-index=%t4.thinlto.bc -mllvm -ignore-empty-index-file
 ; RUN: llvm-nm %t4.o | FileCheck --check-prefix=CHECK-OBJ-IGNORE-EMPTY %s
 ; CHECK-OBJ-IGNORE-EMPTY: T f1
 ; CHECK-OBJ-IGNORE-EMPTY: U f2




More information about the cfe-commits mailing list