diff options
| author | Dale Johannesen <dalej@apple.com> | 2009-08-20 22:12:08 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2009-08-20 22:12:08 +0000 |
| commit | fa2b97e61a915354bef1b28c35776eb362888606 (patch) | |
| tree | 8c9399bdb9cb222cd2e0e0cfd81faff653e1643c | |
| parent | e3836f99bfd5e60a0f78f3cdd6166185ac1e8245 (diff) | |
| download | bcm5719-llvm-fa2b97e61a915354bef1b28c35776eb362888606.tar.gz bcm5719-llvm-fa2b97e61a915354bef1b28c35776eb362888606.zip | |
Use FileCheck even though this means testing for something
that has nothing to do with the point of the test, per Chris.
llvm-svn: 79569
| -rw-r--r-- | llvm/test/CodeGen/X86/2009-08-19-inline-asm-a-modifier.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/2009-08-19-inline-asm-a-modifier.ll b/llvm/test/CodeGen/X86/2009-08-19-inline-asm-a-modifier.ll index fd10b36221c..1bbd431c49c 100644 --- a/llvm/test/CodeGen/X86/2009-08-19-inline-asm-a-modifier.ll +++ b/llvm/test/CodeGen/X86/2009-08-19-inline-asm-a-modifier.ll @@ -1,5 +1,4 @@ ; RUN: llvm-as < %s | llc | FileCheck %s -; RUN: llvm-as < %s | llc | grep {%gs:\\\(%*\\\)} ; ModuleID = 'asm.c' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128" target triple = "i386-apple-darwin9.6" @@ -14,6 +13,7 @@ entry: define zeroext i16 @readgsword2(i32 %address) nounwind { entry: +; CHECK: %gs:(%eax) %asmtmp = tail call i16 asm "movw\09%gs:${1:a}, ${0:w}", "=r,ir,~{dirflag},~{fpsr},~{flags}"(i32 %address) nounwind ; <i16> [#uses=1] ret i16 %asmtmp } |

