diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-06-20 17:31:32 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-06-20 17:31:32 +0000 |
commit | 63b8e299e47e9511e8bdb8a3a3c53674aa86813a (patch) | |
tree | 73c23aaea4704dbfb8b5396b24403332aa7bec57 /test | |
parent | ea18f0cc4d3595ed55b53faf08ead1fc3d5abfa3 (diff) | |
download | external_llvm-63b8e299e47e9511e8bdb8a3a3c53674aa86813a.zip external_llvm-63b8e299e47e9511e8bdb8a3a3c53674aa86813a.tar.gz external_llvm-63b8e299e47e9511e8bdb8a3a3c53674aa86813a.tar.bz2 |
Give this X86-specific test a triple so it's actually X86-specific.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184443 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/DebugInfo/X86/parameters.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/DebugInfo/X86/parameters.ll b/test/DebugInfo/X86/parameters.ll index e83f114..6834f4b 100644 --- a/test/DebugInfo/X86/parameters.ll +++ b/test/DebugInfo/X86/parameters.ll @@ -1,6 +1,6 @@ ; REQUIRES: object-emission ; -; RUN: llc -O0 -filetype=obj < %s > %t +; RUN: llc -mtriple=x86_64-unknown-linux-gnu -O0 -filetype=obj < %s > %t ; RUN: llvm-dwarfdump %t | FileCheck %s ; Test case derived from compiling the following source with clang -g: |