[llvm] r201361 - Simplify checks in MC/AsmParser/directive_loc.s

Diego Novillo dnovillo at google.com
Thu Feb 13 12:16:42 PST 2014


Author: dnovillo
Date: Thu Feb 13 14:16:42 2014
New Revision: 201361

URL: http://llvm.org/viewvc/llvm-project?rev=201361&view=rev
Log:
Simplify checks in MC/AsmParser/directive_loc.s

Modified:
    llvm/trunk/test/MC/AsmParser/directive_loc.s

Modified: llvm/trunk/test/MC/AsmParser/directive_loc.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AsmParser/directive_loc.s?rev=201361&r1=201360&r2=201361&view=diff
==============================================================================
--- llvm/trunk/test/MC/AsmParser/directive_loc.s (original)
+++ llvm/trunk/test/MC/AsmParser/directive_loc.s Thu Feb 13 14:16:42 2014
@@ -1,18 +1,14 @@
-# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s -check-prefix=FILE
-# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s -check-prefix=BASIC-LOC-1
-# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s -check-prefix=BASIC-LOC-2
-# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s -check-prefix=DISCRIMINATOR
-# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s -check-prefix=ISA
+# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
 
         .file 1 "hello"
-# FILE: .file 1 "hello"
+# CHECK: .file 1 "hello"
         .loc 1
         .loc 1 2
-# BASIC-LOC-1: .loc 1 2 0
+# CHECK: .loc 1 2 0
         .loc 1 2 3
-# BASIC-LOC-2: .loc 1 2 3
+# CHECK: .loc 1 2 3
         .loc 1 2 discriminator 1
-# DISCRIMINATOR: 1 2 0 discriminator 1
+# CHECK: 1 2 0 discriminator 1
         .loc 1 2 0 isa 3
-# ISA: 1 2 0 isa 3
+# CHECK: 1 2 0 isa 3
         .loc 1 0





More information about the llvm-commits mailing list