From 79caafeefe7606fd223bf7401ca72bc387bdfefc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 9 Feb 2004 22:52:25 +0000 Subject: [PATCH] Move this testcase out of /home/vadve/lattner/cvs/llvm/test/Programs/LLVMSource, as it fails. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11250 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../CodeGen/X86/2003-08-03-ReservedWordFunction.llx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/CodeGen/X86/2003-08-03-ReservedWordFunction.llx diff --git a/test/CodeGen/X86/2003-08-03-ReservedWordFunction.llx b/test/CodeGen/X86/2003-08-03-ReservedWordFunction.llx new file mode 100644 index 00000000000..8ca27cffb04 --- /dev/null +++ b/test/CodeGen/X86/2003-08-03-ReservedWordFunction.llx @@ -0,0 +1,13 @@ +; This testcase ensures the code emitter does something about the fact that +; we can have collisions with keywords + +; RUN: llvm-as < %s | llc | not grep '^byte:' + +void %byte() { + ret void +} +int %main() { + call void %byte() + ret int 0 +} + -- 2.34.1