diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-31 19:54:06 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-31 19:54:06 +0000 |
commit | e3246fc6ab4ae7599fa1b7aa1b37107a843b2032 (patch) | |
tree | 1023fb061cf293021cade79fb10814ead5dfa95b /test | |
parent | c2b879fcfe3834597948d5dd6044a3f32baee275 (diff) | |
download | external_llvm-e3246fc6ab4ae7599fa1b7aa1b37107a843b2032.zip external_llvm-e3246fc6ab4ae7599fa1b7aa1b37107a843b2032.tar.gz external_llvm-e3246fc6ab4ae7599fa1b7aa1b37107a843b2032.tar.bz2 |
Force triple; darwin's ASM syntax differs from linux's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85676 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/Thumb2/thumb2-branch.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-branch.ll b/test/CodeGen/Thumb2/thumb2-branch.ll index 1fd3f12..1298384 100644 --- a/test/CodeGen/Thumb2/thumb2-branch.ll +++ b/test/CodeGen/Thumb2/thumb2-branch.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s +; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s define void @f1(i32 %a, i32 %b, i32* %v) { entry: |