1 // Check to make sure clang is somewhat picky about -g options. 2 // rdar://10383444 3 4 // Linux. 5 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \ 6 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s 7 // RUN: %clang -### -c -g2 %s -target x86_64-linux-gnu 2>&1 \ 8 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s 9 // RUN: %clang -### -c -g3 %s -target x86_64-linux-gnu 2>&1 \ 10 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s 11 // RUN: %clang -### -c -ggdb %s -target x86_64-linux-gnu 2>&1 \ 12 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s 13 // RUN: %clang -### -c -ggdb1 %s -target x86_64-linux-gnu 2>&1 \ 14 // RUN: | FileCheck -check-prefix=GLTO_ONLY -check-prefix=G_GDB %s 15 // RUN: %clang -### -c -ggdb3 %s -target x86_64-linux-gnu 2>&1 \ 16 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_GDB %s 17 // RUN: %clang -### -c -glldb %s -target x86_64-linux-gnu 2>&1 \ 18 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_LLDB %s 19 // RUN: %clang -### -c -gsce %s -target x86_64-linux-gnu 2>&1 \ 20 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_SCE %s 21 // RUN: %clang -### -c -gdbx %s -target x86_64-linux-gnu 2>&1 \ 22 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DBX %s 23 24 // Android. 25 // Android should always generate DWARF4. 26 // RUN: %clang -### -c -g %s -target arm-linux-androideabi 2>&1 \ 27 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DWARF4 %s 28 29 // Darwin. 30 // RUN: %clang -### -c -g %s -target x86_64-apple-darwin14 2>&1 \ 31 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 32 // RUN: -check-prefix=G_DWARF2 \ 33 // RUN: -check-prefix=G_LLDB %s 34 // RUN: %clang -### -c -g %s -target x86_64-apple-darwin16 2>&1 \ 35 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 36 // RUN: -check-prefix=G_DWARF4 \ 37 // RUN: -check-prefix=G_LLDB %s 38 // RUN: %clang -### -c -g2 %s -target x86_64-apple-darwin16 2>&1 \ 39 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 40 // RUN: -check-prefix=G_DWARF4 %s 41 // RUN: %clang -### -c -g3 %s -target x86_64-apple-darwin16 2>&1 \ 42 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 43 // RUN: -check-prefix=G_DWARF4 %s 44 // RUN: %clang -### -c -ggdb %s -target x86_64-apple-darwin16 2>&1 \ 45 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 46 // RUN: -check-prefix=G_DWARF4 \ 47 // RUN: -check-prefix=G_GDB %s 48 // RUN: %clang -### -c -ggdb1 %s -target x86_64-apple-darwin16 2>&1 \ 49 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 50 // RUN: %clang -### -c -ggdb3 %s -target x86_64-apple-darwin16 2>&1 \ 51 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 52 // RUN: -check-prefix=G_DWARF4 %s 53 // RUN: %clang -### -c -g %s -target x86_64-apple-macosx10.11 2>&1 \ 54 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 55 // RUN: -check-prefix=G_DWARF4 %s 56 // RUN: %clang -### -c -g %s -target x86_64-apple-macosx10.10 2>&1 \ 57 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 58 // RUN: %clang -### -c -g %s -target armv7-apple-ios9.0 2>&1 \ 59 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 60 // RUN: -check-prefix=G_DWARF4 %s 61 // RUN: %clang -### -c -g %s -target armv7-apple-ios8.0 2>&1 \ 62 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 63 // RUN: %clang -### -c -g %s -target armv7k-apple-watchos 2>&1 \ 64 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 65 // RUN: -check-prefix=G_DWARF4 %s 66 // RUN: %clang -### -c -g %s -target arm64-apple-tvos9.0 2>&1 \ 67 // RUN: | FileCheck -check-prefix=G_STANDALONE \ 68 // RUN: -check-prefix=G_DWARF4 %s 69 // RUN: %clang -### -c -fsave-optimization-record %s \ 70 // RUN: -target x86_64-apple-darwin 2>&1 \ 71 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 72 // RUN: %clang -### -c -g -fsave-optimization-record %s \ 73 // RUN: -target x86_64-apple-darwin 2>&1 \ 74 // RUN: | FileCheck -check-prefix=G_STANDALONE %s 75 76 // FreeBSD. 77 // RUN: %clang -### -c -g %s -target x86_64-pc-freebsd11.0 2>&1 \ 78 // RUN: | FileCheck -check-prefix=G_GDB \ 79 // RUN: -check-prefix=G_DWARF2 %s 80 // RUN: %clang -### -c -g %s -target x86_64-pc-freebsd12.0 2>&1 \ 81 // RUN: | FileCheck -check-prefix=G_GDB \ 82 // RUN: -check-prefix=G_DWARF4 %s 83 84 // Windows. 85 // RUN: %clang -### -c -g %s -target x86_64-w64-windows-gnu 2>&1 \ 86 // RUN: | FileCheck -check-prefix=G_GDB %s 87 // RUN: %clang -### -c -g %s -target x86_64-windows-msvc 2>&1 \ 88 // RUN: | FileCheck -check-prefix=G_NOTUNING %s 89 // RUN: %clang_cl -### -c -Z7 -target x86_64-windows-msvc -- %s 2>&1 \ 90 // RUN: | FileCheck -check-prefix=G_NOTUNING %s 91 92 // On the PS4, -g defaults to -gno-column-info, and we always generate the 93 // arange section. 94 // RUN: %clang -### -c %s -target x86_64-scei-ps4 2>&1 \ 95 // RUN: | FileCheck -check-prefix=NOG_PS4 %s 96 // RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \ 97 // RUN: | FileCheck -check-prefix=G_PS4 %s 98 // RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \ 99 // RUN: | FileCheck -check-prefix=G_SCE %s 100 // RUN: %clang -### -c %s -g -target x86_64-scei-ps4 2>&1 \ 101 // RUN: | FileCheck -check-prefix=NOCI %s 102 // RUN: %clang -### -c %s -g -gcolumn-info -target x86_64-scei-ps4 2>&1 \ 103 // RUN: | FileCheck -check-prefix=CI %s 104 // RUN: %clang -### -c %s -gsce -target x86_64-unknown-linux 2>&1 \ 105 // RUN: | FileCheck -check-prefix=NOCI %s 106 107 // On the AIX, -g defaults to -gdbx and limited debug info. 108 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \ 109 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DBX %s 110 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \ 111 // RUN: | FileCheck -check-prefix=G_LIMITED -check-prefix=G_DBX %s 112 113 // For DBX, -g defaults to -gstrict-dwarf. 114 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \ 115 // RUN: | FileCheck -check-prefix=STRICT %s 116 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \ 117 // RUN: | FileCheck -check-prefix=STRICT %s 118 // RUN: %clang -### -c -g -gno-strict-dwarf %s -target powerpc-ibm-aix-xcoff \ 119 // RUN: 2>&1 | FileCheck -check-prefix=NOSTRICT %s 120 // RUN: %clang -### -c -g %s -target x86_64-linux-gnu 2>&1 \ 121 // RUN: | FileCheck -check-prefix=NOSTRICT %s 122 // RUN: %clang -### -c -g -ggdb %s -target powerpc-ibm-aix-xcoff 2>&1 \ 123 // RUN: | FileCheck -check-prefix=NOSTRICT %s 124 125 // On the AIX, -g defaults to -gno-column-info. 126 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff 2>&1 \ 127 // RUN: | FileCheck -check-prefix=NOCI %s 128 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff 2>&1 \ 129 // RUN: | FileCheck -check-prefix=NOCI %s 130 // RUN: %clang -### -c -g %s -target powerpc-ibm-aix-xcoff -gcolumn-info 2>&1 \ 131 // RUN: | FileCheck -check-prefix=CI %s 132 // RUN: %clang -### -c -g %s -target powerpc64-ibm-aix-xcoff -gcolumn-info \ 133 // RUN: 2>&1 | FileCheck -check-prefix=CI %s 134 135 // RUN: %clang -### -c -gdwarf-2 %s 2>&1 \ 136 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 137 // 138 // RUN: not %clang -### -c -gfoo %s 2>&1 | FileCheck -check-prefix=G_ERR %s 139 // RUN: %clang -### -c -g -g0 %s 2>&1 | FileCheck -check-prefix=G_NO %s 140 // RUN: %clang -### -c -ggdb0 %s 2>&1 | FileCheck -check-prefix=G_NO %s 141 // RUN: %clang -### -c -glldb -g0 %s 2>&1 | FileCheck -check-prefix=G_NO %s 142 // RUN: %clang -### -c -glldb -g1 %s 2>&1 \ 143 // RUN: | FileCheck -check-prefix=GLTO_ONLY -check-prefix=G_LLDB %s 144 // 145 // PS4 defaults to sce; -ggdb0 changes tuning but turns off debug info, 146 // then -g turns it back on without affecting tuning. 147 // RUN: %clang -### -c -ggdb0 -g -target x86_64-scei-ps4 %s 2>&1 \ 148 // RUN: | FileCheck -check-prefix=G_GDB %s 149 // 150 // RUN: %clang -### -c -g1 %s 2>&1 \ 151 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 152 // RUN: %clang -### -c -gmlt %s 2>&1 \ 153 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 154 // RUN: %clang -### -c -gline-tables-only %s 2>&1 \ 155 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 156 // RUN: %clang -### -c -gline-tables-only %s -target x86_64-apple-darwin 2>&1 \ 157 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 158 // RUN: %clang -### -c -gline-tables-only %s -target i686-pc-openbsd 2>&1 \ 159 // RUN: | FileCheck -check-prefix=GLTO_ONLY_DWARF2 %s 160 // RUN: %clang -### -c -gline-tables-only %s -target x86_64-pc-freebsd10.0 2>&1 \ 161 // RUN: | FileCheck -check-prefix=GLTO_ONLY_DWARF2 %s 162 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-linux-gnu 2>&1 \ 163 // RUN: | FileCheck -check-prefix=G_ONLY %s 164 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-apple-darwin16 2>&1 \ 165 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_DWARF4 %s 166 // RUN: %clang -### -c -gline-tables-only -g %s -target i686-pc-openbsd 2>&1 \ 167 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 168 // RUN: %clang -### -c -gline-tables-only -g %s -target x86_64-pc-freebsd10.0 2>&1 \ 169 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 170 // RUN: %clang -### -c -gline-tables-only -g %s -target i386-pc-solaris 2>&1 \ 171 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 172 // RUN: %clang -### -c -gline-tables-only -g0 %s 2>&1 \ 173 // RUN: | FileCheck -check-prefix=GLTO_NO %s 174 // 175 // RUN: %clang -### -c -gline-directives-only %s -target x86_64-apple-darwin 2>&1 \ 176 // RUN: | FileCheck -check-prefix=GLIO_ONLY %s 177 // RUN: %clang -### -c -gline-directives-only %s -target i686-pc-openbsd 2>&1 \ 178 // RUN: | FileCheck -check-prefix=GLIO_ONLY_DWARF2 %s 179 // RUN: %clang -### -c -gline-directives-only %s -target x86_64-pc-freebsd10.0 2>&1 \ 180 // RUN: | FileCheck -check-prefix=GLIO_ONLY_DWARF2 %s 181 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-linux-gnu 2>&1 \ 182 // RUN: | FileCheck -check-prefix=G_ONLY %s 183 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-apple-darwin16 2>&1 \ 184 // RUN: | FileCheck -check-prefix=G_STANDALONE -check-prefix=G_DWARF4 %s 185 // RUN: %clang -### -c -gline-directives-only -g %s -target i686-pc-openbsd 2>&1 \ 186 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 187 // RUN: %clang -### -c -gline-directives-only -g %s -target x86_64-pc-freebsd10.0 2>&1 \ 188 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 189 // RUN: %clang -### -c -gline-directives-only -g %s -target i386-pc-solaris 2>&1 \ 190 // RUN: | FileCheck -check-prefix=G_ONLY_DWARF2 %s 191 // RUN: %clang -### -c -gline-directives-only -g0 %s 2>&1 \ 192 // RUN: | FileCheck -check-prefix=GLIO_NO %s 193 // 194 // RUN: %clang -### -c -grecord-gcc-switches %s 2>&1 \ 195 // | FileCheck -check-prefix=GRECORD %s 196 // RUN: %clang -### -c -gno-record-gcc-switches %s 2>&1 \ 197 // | FileCheck -check-prefix=GNO_RECORD %s 198 // RUN: %clang -### -c -grecord-gcc-switches -gno-record-gcc-switches %s 2>&1 \ 199 // | FileCheck -check-prefix=GNO_RECORD %s/ 200 // RUN: %clang -### -c -grecord-gcc-switches -o - %s 2>&1 \ 201 // | FileCheck -check-prefix=GRECORD_O %s 202 // RUN: %clang -### -c -O3 -ffunction-sections -grecord-gcc-switches %s 2>&1 \ 203 // | FileCheck -check-prefix=GRECORD_OPT %s 204 // 205 // RUN: %clang -### -c -grecord-command-line %s 2>&1 \ 206 // | FileCheck -check-prefix=GRECORD %s 207 // RUN: %clang -### -c -gno-record-command-line %s 2>&1 \ 208 // | FileCheck -check-prefix=GNO_RECORD %s 209 // RUN: %clang -### -c -grecord-command-line -gno-record-command-line %s 2>&1 \ 210 // | FileCheck -check-prefix=GNO_RECORD %s/ 211 // RUN: %clang -### -c -grecord-command-line -o - %s 2>&1 \ 212 // | FileCheck -check-prefix=GRECORD_O %s 213 // RUN: %clang -### -c -O3 -ffunction-sections -grecord-command-line %s 2>&1 \ 214 // | FileCheck -check-prefix=GRECORD_OPT %s 215 // 216 // RUN: %clang -### -c -gstrict-dwarf -gno-strict-dwarf %s 2>&1 \ 217 // RUN: | FileCheck -check-prefix=GIGNORE %s 218 // 219 // RUN: %clang -### -c -ggnu-pubnames %s 2>&1 | FileCheck -check-prefix=GPUB %s 220 // RUN: %clang -### -c -ggdb %s 2>&1 | FileCheck -check-prefix=NOPUB %s 221 // RUN: %clang -### -c -ggnu-pubnames -gno-gnu-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 222 // RUN: %clang -### -c -ggnu-pubnames -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 223 // 224 // RUN: %clang -### -c -gpubnames %s 2>&1 | FileCheck -check-prefix=PUB %s 225 // RUN: %clang -### -c -ggdb %s 2>&1 | FileCheck -check-prefix=NOPUB %s 226 // RUN: %clang -### -c -gpubnames -gno-gnu-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 227 // RUN: %clang -### -c -gpubnames -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 228 // 229 // RUN: %clang -### -c -gsplit-dwarf -g -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 230 // 231 // RUN: %clang -### -c -fdebug-ranges-base-address %s 2>&1 | FileCheck -check-prefix=RNGBSE %s 232 // RUN: %clang -### -c %s 2>&1 | FileCheck -check-prefix=NORNGBSE %s 233 // RUN: %clang -### -c -fdebug-ranges-base-address -fno-debug-ranges-base-address %s 2>&1 | FileCheck -check-prefix=NORNGBSE %s 234 // 235 // RUN: %clang -### -c -glldb %s 2>&1 | FileCheck -check-prefix=NOPUB %s 236 // RUN: %clang -### -c -glldb -gno-pubnames %s 2>&1 | FileCheck -check-prefix=NOPUB %s 237 // 238 // RUN: %clang -### -c -gdwarf-aranges %s 2>&1 | FileCheck -check-prefix=GARANGE %s 239 // 240 // RUN: %clang -### -fdebug-types-section -target x86_64-unknown-linux %s 2>&1 \ 241 // RUN: | FileCheck -check-prefix=FDTS %s 242 // 243 // RUN: %clang -### -fdebug-types-section -fno-debug-types-section -target x86_64-unknown-linux %s 2>&1 \ 244 // RUN: | FileCheck -check-prefix=NOFDTS %s 245 // 246 // RUN: %clang -### -fdebug-types-section -target wasm32-unknown-unknown %s 2>&1 \ 247 // RUN: | FileCheck -check-prefix=FDTS %s 248 // 249 // RUN: %clang -### -fdebug-types-section -target x86_64-apple-darwin %s 2>&1 \ 250 // RUN: | FileCheck -check-prefix=FDTSE %s 251 // 252 // RUN: %clang -### -fdebug-types-section -fno-debug-types-section -target x86_64-apple-darwin %s 2>&1 \ 253 // RUN: | FileCheck -check-prefix=NOFDTSE %s 254 // 255 // RUN: %clang -### -g -gno-column-info %s 2>&1 \ 256 // RUN: | FileCheck -check-prefix=NOCI %s 257 // 258 // RUN: %clang -### -g -target x86_64-unknown-unknown %s 2>&1 \ 259 // | FileCheck -check-prefix=CI %s 260 // 261 // RUN: %clang -### -gmodules %s 2>&1 \ 262 // RUN: | FileCheck -check-prefix=GEXTREFS %s 263 // 264 // RUN: %clang -### -gmodules -g %s 2>&1 \ 265 // RUN: | FileCheck -check-prefix=GEXTREFS %s 266 // 267 // RUN: %clang -### -gline-tables-only -gmodules %s 2>&1 \ 268 // RUN: | FileCheck -check-prefix=GEXTREFS %s 269 // 270 // RUN: %clang -### -gmodules -gline-tables-only %s 2>&1 \ 271 // RUN: | FileCheck -check-prefix=GLTO_ONLY %s 272 // 273 // RUN: %clang -### -target %itanium_abi_triple -gmodules -gline-directives-only %s 2>&1 \ 274 // RUN: | FileCheck -check-prefix=GLIO_ONLY %s 275 // 276 // NOG_PS4: "-cc1" 277 // NOG_PS4-NOT: "-dwarf-version= 278 // NOG_PS4: "-generate-arange-section" 279 // NOG_PS4-NOT: "-dwarf-version= 280 // 281 // G_PS4: "-cc1" 282 // G_PS4: "-dwarf-version= 283 // G_PS4: "-generate-arange-section" 284 // 285 // G_ERR: error: unknown argument: 286 // 287 // G_NO: "-cc1" 288 // G_NO-NOT: -debug-info-kind= 289 // 290 // GLTO_ONLY: "-cc1" 291 // GLTO_ONLY-NOT: "-dwarf-ext-refs" 292 // GLTO_ONLY: "-debug-info-kind=line-tables-only" 293 // GLTO_ONLY-NOT: "-dwarf-ext-refs" 294 // 295 // GLTO_ONLY_DWARF2: "-cc1" 296 // GLTO_ONLY_DWARF2: "-debug-info-kind=line-tables-only" 297 // GLTO_ONLY_DWARF2: "-dwarf-version=2" 298 // 299 // GLIO_ONLY: "-cc1" 300 // GLIO_ONLY-NOT: "-dwarf-ext-refs" 301 // GLIO_ONLY: "-debug-info-kind=line-directives-only" 302 // GLIO_ONLY-NOT: "-dwarf-ext-refs" 303 // 304 // GLIO_ONLY_DWARF2: "-cc1" 305 // GLIO_ONLY_DWARF2: "-debug-info-kind=line-directives-only" 306 // GLIO_ONLY_DWARF2: "-dwarf-version=2" 307 // 308 // G_ONLY: "-cc1" 309 // G_ONLY: "-debug-info-kind=limited" 310 // 311 // These tests assert that "-gline-tables-only" "-g" uses the latter, 312 // but otherwise not caring about the DebugInfoKind. 313 // G_ONLY_DWARF2: "-cc1" 314 // G_ONLY_DWARF2: "-debug-info-kind={{standalone|limited}}" 315 // G_ONLY_DWARF2: "-dwarf-version=2" 316 // 317 // G_STANDALONE: "-cc1" 318 // G_STANDALONE: "-debug-info-kind=standalone" 319 // G_LIMITED: "-cc1" 320 // G_LIMITED: "-debug-info-kind=limited" 321 // G_DWARF2: "-dwarf-version=2" 322 // G_DWARF4: "-dwarf-version=4" 323 // 324 // G_GDB: "-debugger-tuning=gdb" 325 // G_LLDB: "-debugger-tuning=lldb" 326 // G_SCE: "-debugger-tuning=sce" 327 // G_DBX: "-debugger-tuning=dbx" 328 // 329 // STRICT: "-gstrict-dwarf" 330 // NOSTRICT-NOT: "-gstrict-dwarf" 331 // 332 // G_NOTUNING: "-cc1" 333 // G_NOTUNING-NOT: "-debugger-tuning=" 334 // 335 // This tests asserts that "-gline-tables-only" "-g0" disables debug info. 336 // GLTO_NO: "-cc1" 337 // GLTO_NO-NOT: -debug-info-kind= 338 // 339 // This tests asserts that "-gline-directives-only" "-g0" disables debug info. 340 // GLIO_NO: "-cc1" 341 // GLIO_NO-NOT: -debug-info-kind= 342 // 343 // GRECORD: "-dwarf-debug-flags" 344 // GRECORD: -### -c -grecord-gcc-switches 345 // 346 // GNO_RECORD-NOT: "-dwarf-debug-flags" 347 // GNO_RECORD-NOT: -### -c -grecord-gcc-switches 348 // 349 // GRECORD_O: "-dwarf-debug-flags" 350 // GRECORD_O: -### -c -grecord-gcc-switches -o - 351 // 352 // GRECORD_OPT: -### -c -O3 -ffunction-sections -grecord-gcc-switches 353 // 354 // GIGNORE-NOT: "argument unused during compilation" 355 // 356 // GPUB: -ggnu-pubnames 357 // NOPUB-NOT: -ggnu-pubnames 358 // NOPUB-NOT: -gpubnames 359 // 360 // PUB: -gpubnames 361 // 362 // RNGBSE: -fdebug-ranges-base-address 363 // NORNGBSE-NOT: -fdebug-ranges-base-address 364 // 365 // GARANGE: -generate-arange-section 366 // 367 // FDTS: "-mllvm" "-generate-type-units" 368 // FDTSE: error: unsupported option '-fdebug-types-section' for target 'x86_64-apple-darwin' 369 // 370 // NOFDTS-NOT: "-mllvm" "-generate-type-units" 371 // NOFDTSE-NOT: error: unsupported option '-fdebug-types-section' for target 'x86_64-apple-darwin' 372 // 373 // CI-NOT: "-gno-column-info" 374 // 375 // NOCI: "-gno-column-info" 376 // 377 // GEXTREFS: "-dwarf-ext-refs" "-fmodule-format=obj" 378 // GEXTREFS: "-debug-info-kind={{standalone|limited}}" 379 380 // RUN: not %clang -cc1 -debug-info-kind=watkind 2>&1 | FileCheck -check-prefix=BADSTRING1 %s 381 // BADSTRING1: error: invalid value 'watkind' in '-debug-info-kind=watkind' 382 // RUN: not %clang -cc1 -debugger-tuning=gmodal 2>&1 | FileCheck -check-prefix=BADSTRING2 %s 383 // BADSTRING2: error: invalid value 'gmodal' in '-debugger-tuning=gmodal' 384 385 // RUN: %clang -### -fdebug-macro %s 2>&1 | FileCheck -check-prefix=MACRO %s 386 // RUN: %clang -### -fno-debug-macro %s 2>&1 | FileCheck -check-prefix=NOMACRO %s 387 // RUN: %clang -### %s 2>&1 | FileCheck -check-prefix=NOMACRO %s 388 // MACRO: "-debug-info-macro" 389 // NOMACRO-NOT: "-debug-info-macro" 390 // 391 // RUN: %clang -### -gdwarf-5 -gembed-source %s 2>&1 | FileCheck -check-prefix=GEMBED_5 %s 392 // RUN: %clang -### -gdwarf-2 -gembed-source %s 2>&1 | FileCheck -check-prefix=GEMBED_2 %s 393 // RUN: %clang -### -gdwarf-5 -gno-embed-source %s 2>&1 | FileCheck -check-prefix=NOGEMBED_5 %s 394 // RUN: %clang -### -gdwarf-2 -gno-embed-source %s 2>&1 | FileCheck -check-prefix=NOGEMBED_2 %s 395 // 396 // GEMBED_5: "-gembed-source" 397 // GEMBED_2: error: invalid argument '-gembed-source' only allowed with '-gdwarf-5' 398 // NOGEMBED_5-NOT: "-gembed-source" 399 // NOGEMBED_2-NOT: error: invalid argument '-gembed-source' only allowed with '-gdwarf-5' 400 // 401 // RUN: %clang -### -g -fno-eliminate-unused-debug-types -c %s 2>&1 \ 402 // RUN: | FileCheck -check-prefix=DEBUG_UNUSED_TYPES %s 403 // DEBUG_UNUSED_TYPES: "-debug-info-kind=unused-types" 404 // DEBUG_UNUSED_TYPES-NOT: "-debug-info-kind=limited" 405 // RUN: %clang -### -g -feliminate-unused-debug-types -c %s 2>&1 \ 406 // RUN: | FileCheck -check-prefix=NO_DEBUG_UNUSED_TYPES %s 407 // RUN: %clang -### -fno-eliminate-unused-debug-types -g1 -c %s 2>&1 \ 408 // RUN: | FileCheck -check-prefix=NO_DEBUG_UNUSED_TYPES %s 409 // NO_DEBUG_UNUSED_TYPES: "-debug-info-kind={{limited|line-tables-only|standalone}}" 410 // NO_DEBUG_UNUSED_TYPES-NOT: "-debug-info-kind=unused-types" 411 // 412 // RUN: %clang -### -c -gdwarf-5 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s 413 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s 414 // RUN: %clang -### -c -gdwarf-3 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_ON %s 415 // RUN: %clang -### -c -gdwarf-2 -gdwarf64 -target x86_64 %s 2>&1 | FileCheck -check-prefix=GDWARF64_VER %s 416 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64 -target x86_64 %s 2>&1 \ 417 // RUN: | FileCheck -check-prefix=GDWARF64_ON %s 418 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target i386-linux-gnu %s 2>&1 \ 419 // RUN: | FileCheck -check-prefix=GDWARF64_32ARCH %s 420 // RUN: %clang -### -c -gdwarf-4 -gdwarf64 -target x86_64-apple-darwin %s 2>&1 \ 421 // RUN: | FileCheck -check-prefix=GDWARF64_ELF %s 422 // 423 // GDWARF64_ON: "-gdwarf64" 424 // GDWARF64_VER: error: invalid argument '-gdwarf64' only allowed with 'DWARFv3 or greater' 425 // GDWARF64_32ARCH: error: invalid argument '-gdwarf64' only allowed with '64 bit architecture' 426 // GDWARF64_ELF: error: invalid argument '-gdwarf64' only allowed with 'ELF platforms' 427