diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-01-29 06:26:07 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-01-29 06:26:07 +0000 |
| commit | f4e5e556fd7d04f40b26b022de3d68397bf7e493 (patch) | |
| tree | 1f15d126ddcc87aece222cb6f2ce9e6ede66893f | |
| parent | 05837edae7295931e8d4317d317831275d469aeb (diff) | |
| download | bcm5719-llvm-f4e5e556fd7d04f40b26b022de3d68397bf7e493.tar.gz bcm5719-llvm-f4e5e556fd7d04f40b26b022de3d68397bf7e493.zip | |
Add target triples to these so they don't fail on linux.
llvm-svn: 46496
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/2008-01-25-EmptyFunction.ll | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll b/llvm/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll index 909e8ee0e95..38ae87ce8c0 100644 --- a/llvm/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll +++ b/llvm/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll @@ -1,4 +1,6 @@ ; RUN: llvm-as < %s | llc -march=ppc32 | grep nop +target triple = "powerpc-apple-darwin8" + define void @bork() noreturn nounwind { entry: diff --git a/llvm/test/CodeGen/X86/2008-01-25-EmptyFunction.ll b/llvm/test/CodeGen/X86/2008-01-25-EmptyFunction.ll index 7d738bcc7ee..ffb82ae7f2b 100644 --- a/llvm/test/CodeGen/X86/2008-01-25-EmptyFunction.ll +++ b/llvm/test/CodeGen/X86/2008-01-25-EmptyFunction.ll @@ -1,4 +1,6 @@ ; RUN: llvm-as < %s | llc -march=x86 | grep nop +target triple = "i686-apple-darwin8" + define void @bork() noreturn nounwind { entry: |

