From 5c36d78462e373a53fe576188788f9d17c89b466 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 16 Aug 2006 02:47:44 +0000 Subject: [PATCH] add a note git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29722 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/README.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt index 81babc50a94..f52c6252707 100644 --- a/lib/Target/X86/README.txt +++ b/lib/Target/X86/README.txt @@ -709,3 +709,16 @@ float uint32_2_float( unsigned u ) { When using fastcc abi, align stack slot of argument of type double on 8 byte boundary to improve performance. + +//===---------------------------------------------------------------------===// + +Codegen: + +if ((variable == 4) || (variable == 6)) { stuff } + +as: + +or eax, 2 +cmp eax, 6 +jz label + -- 2.34.1