diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-13 20:09:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-13 20:09:33 +0000 |
commit | f494e720cf81404a1541f9dbedeb555ce45e7291 (patch) | |
tree | 5b6a3597d55ee0010b30e149a7edd3602e0b47d9 /docs | |
parent | 0a3aac21a5fe28ea06680b978ef82eb2af1bf59c (diff) | |
download | external_llvm-f494e720cf81404a1541f9dbedeb555ce45e7291.zip external_llvm-f494e720cf81404a1541f9dbedeb555ce45e7291.tar.gz external_llvm-f494e720cf81404a1541f9dbedeb555ce45e7291.tar.bz2 |
note how to disable inlining
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CommandGuide/llvmgcc.pod | 10 | ||||
-rw-r--r-- | docs/CommandGuide/llvmgxx.pod | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/docs/CommandGuide/llvmgcc.pod b/docs/CommandGuide/llvmgcc.pod index 6dc8c04..4201255 100644 --- a/docs/CommandGuide/llvmgcc.pod +++ b/docs/CommandGuide/llvmgcc.pod @@ -64,9 +64,17 @@ repeated. Link in the library libI<name>.[bc | a | so]. This library should be a bytecode library. +=item B<-Wa,>I<option> + +Pass I<option> to gccas + =item B<-Wl,>I<option> -Pass I<option> to the linker (usually gccld). +Pass I<option> to gccld + +=item B<-Wa,-disable-inlining -Wl,-disable-inlining>I<option> + +Fully disable all inlining =back diff --git a/docs/CommandGuide/llvmgxx.pod b/docs/CommandGuide/llvmgxx.pod index 16379c2..dcf5702 100644 --- a/docs/CommandGuide/llvmgxx.pod +++ b/docs/CommandGuide/llvmgxx.pod @@ -64,9 +64,17 @@ repeated. Link in the library libI<name>.[bc | a | so]. This library should be a bytecode library. +=item B<-Wa,>I<option> + +Pass I<option> to gccas + =item B<-Wl,>I<option> -Pass I<option> to the linker (usually gccld). +Pass I<option> to gccld + +=item B<-Wa,-disable-inlining -Wl,-disable-inlining>I<option> + +Fully disable all inlining =back |