[llvm] r352460 - Fix an incorrectly configured test.

Jeremy Morse via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 29 00:41:44 PST 2019


Author: jmorse
Date: Tue Jan 29 00:41:44 2019
New Revision: 352460

URL: http://llvm.org/viewvc/llvm-project?rev=352460&view=rev
Log:
Fix an incorrectly configured test.

This should have had a target triple in it, my mistake.

Modified:
    llvm/trunk/test/DebugInfo/X86/pr40427.ll

Modified: llvm/trunk/test/DebugInfo/X86/pr40427.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/X86/pr40427.ll?rev=352460&r1=352459&r2=352460&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/X86/pr40427.ll (original)
+++ llvm/trunk/test/DebugInfo/X86/pr40427.ll Tue Jan 29 00:41:44 2019
@@ -9,6 +9,8 @@
 
 ; CHECK: ![[DBGVAR:[0-9]+]] = !DILocalVariable(name: "bees",
 
+target triple = "x86_64-unknown-linux-gnu"
+
 define i16 @lolwat(i1 %spoons, i64 *%bees, i16 %yellow, i64 *%more) {
 entry:
   br i1 %spoons, label %trueb, label %falseb




More information about the llvm-commits mailing list