mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
201 B
Bash
Executable File
10 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This is a wrapper around llvm's opt command line tool that automatically
|
|
# performs the necessary work to access swift's llvm passes.
|
|
#
|
|
|
|
set -e
|
|
"@OPT@" -load "@SWIFT_LLVM_DYLIB@" "$@"
|
|
|