diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-18 05:30:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-18 05:30:27 +0000 |
commit | d3afba852f93dca15ca71d7241d447238acc93d1 (patch) | |
tree | 304f4a94868ca1c50f8717213ad89776b3d3ce3b /test/CodeGen/parameter-passing.c | |
parent | 592362b46ad69db0db0988e7f9d8cbe647510bdd (diff) |
Fix some made up triples.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79316 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/parameter-passing.c')
-rw-r--r-- | test/CodeGen/parameter-passing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/parameter-passing.c b/test/CodeGen/parameter-passing.c index 2ace299ef7..dce0ff80cd 100644 --- a/test/CodeGen/parameter-passing.c +++ b/test/CodeGen/parameter-passing.c @@ -11,7 +11,7 @@ // RUN: clang-cc %s -triple x86_64-unknown-unknown -O3 -emit-llvm -o %t && // RUN: not grep '@g0' %t && -// RUN: clang-cc %s -triple ppc-unknown-unknown -O3 -emit-llvm -o %t && +// RUN: clang-cc %s -triple powerpc-unknown-unknown -O3 -emit-llvm -o %t && // RUN: not grep '@g0' %t && // RUN: true |