diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-04-08 21:37:21 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-04-08 21:37:21 +0000 |
commit | 74d92c19247067189b2d62854cad16dae0487068 (patch) | |
tree | 56b403bcc0fd56f65c58a91a4975527994364fb4 /llvm/test/CodeGen | |
parent | ecd7043883c79d87d737001d8e1d780d50cfc8ac (diff) | |
download | bcm5719-llvm-74d92c19247067189b2d62854cad16dae0487068.tar.gz bcm5719-llvm-74d92c19247067189b2d62854cad16dae0487068.zip |
Change -arm-trap-func= into a non-arm specific option. Now Intrinsic::trap is lowered into a call to the specified trap function at sdisel time.
llvm-svn: 129152
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/ARM/trap.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/trap.ll b/llvm/test/CodeGen/ARM/trap.ll index 189bc8cc04e..38842a9646f 100644 --- a/llvm/test/CodeGen/ARM/trap.ll +++ b/llvm/test/CodeGen/ARM/trap.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s -check-prefix=INSTR -; RUN: llc < %s -mtriple=arm-apple-darwin -arm-trap-func=_trap | FileCheck %s -check-prefix=FUNC +; RUN: llc < %s -mtriple=arm-apple-darwin -trap-func=_trap | FileCheck %s -check-prefix=FUNC ; rdar://7961298 ; rdar://9249183 |