aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2012-01-11 18:04:47 +0000
committerKevin Enderby <enderby@apple.com>2012-01-11 18:04:47 +0000
commit8704b7897db5d877970bde2c8d6766488c457b90 (patch)
tree81e81f6dbcd74fa2459ac7a212c531b1191343ab /test/MC/AsmParser
parent46df3adb4e12e7f607a5bd21335311604834ba7e (diff)
downloadexternal_llvm-8704b7897db5d877970bde2c8d6766488c457b90.zip
external_llvm-8704b7897db5d877970bde2c8d6766488c457b90.tar.gz
external_llvm-8704b7897db5d877970bde2c8d6766488c457b90.tar.bz2
The error check for using -g with a .s file already containing dwarf .file
directives was in the wrong place and getting triggered incorectly with a cpp .file directive. This change fixes that and adds a test case. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147951 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/directive_file-errors.s9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/MC/AsmParser/directive_file-errors.s b/test/MC/AsmParser/directive_file-errors.s
new file mode 100644
index 0000000..5ae2bbe
--- /dev/null
+++ b/test/MC/AsmParser/directive_file-errors.s
@@ -0,0 +1,9 @@
+// RUN: not llvm-mc -g -triple i386-unknown-unknown %s 2> %t.err | FileCheck %s
+// RUN: FileCheck --check-prefix=CHECK-ERRORS %s < %t.err
+// Test for Bug 11740
+
+ .file "hello"
+ .file 1 "world"
+
+// CHECK: .file "hello"
+// CHECK-ERRORS:6:9: error: input can't have .file dwarf directives when -g is used to generate dwarf debug info for assembly code