mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 18:16:04 +00:00

- There is no reason to have a modules specific flag for disabling autolinking. Instead, convert the existing flag into -fno-autolink (which should cover other autolinking code generation paths like #pragmas if and when we support them). llvm-svn: 179612
7 lines
224 B
C
7 lines
224 B
C
// RUN: %clang -target x86_64-apple-darwin -fsyntax-only %s -no-integrated-as -### 2>&1 | FileCheck %s
|
|
|
|
// Test that the autolinking feature is disabled with *not* using the
|
|
// integrated assembler.
|
|
|
|
// CHECK: -fno-autolink
|